酷店

IOpenAtlasEncryptComponent.h 502B

123456789101112131415161718192021222324252627282930
  1. //
  2. // SecurityGuardSDK version 2.1.0
  3. //
  4. #import <Foundation/Foundation.h>
  5. /**
  6. * 增强加解密算法
  7. */
  8. @protocol IOpenAtlasEncryptComponent <NSObject>
  9. /**
  10. * 传入需要处理的数据,生成加密结果返回
  11. *
  12. * @param needProcessValue 需要加密的数据
  13. *
  14. * @param authCode SDK授权码
  15. *
  16. * @return 返回加密的字符串,失败时返回nil
  17. */
  18. - (NSString*) atlasSafeEncrypt: (NSString*) needProcessValue
  19. authCode: (NSString*) authCode;
  20. @end