//
// IPUMobileSecurity.h
// IPUMobile
//
// Created by 秋林 on 2019/1/15.
// Copyright © 2019 Asiainfo. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface IPUMobileSecurity : NSObject
- (NSString *)requsetEncrypt:(NSString *)params;
- (NSString *)getDesKey;
- (NSString *)responseDecrypt:(NSString *)result;
@end
NS_ASSUME_NONNULL_END
|