Files
yinmeng-ios/xplan-ios/Library/RPSDK/SecurityGuardSDK.framework/Headers/Open/OpenAtlasEncrypt/IOpenAtlasEncryptComponent.h
2021-09-23 19:32:54 +08:00

30 lines
502 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// SecurityGuardSDK version 2.1.0
//
#import <Foundation/Foundation.h>
/**
* 增强加解密算法
*/
@protocol IOpenAtlasEncryptComponent <NSObject>
/**
* 传入需要处理的数据,生成加密结果返回
*
* @param needProcessValue 需要加密的数据
*
* @param authCode SDK授权码
*
* @return 返回加密的字符串失败时返回nil
*/
- (NSString*) atlasSafeEncrypt: (NSString*) needProcessValue
authCode: (NSString*) authCode;
@end