MPLogCryptDelegate.h 418 B

123456789101112131415161718192021222324252627
  1. //
  2. // MPLogCryptDelegate.h
  3. // APRemoteLogging
  4. //
  5. // Created by kuoxuan on 2020/7/16.
  6. // Copyright © 2020 Alipay. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol MPLogCryptDelegate <NSObject>
  11. /**
  12. 埋点加密方法
  13. */
  14. - (NSString *)logEnCrypt:(NSString *)input;
  15. /**
  16. 埋点解密方法
  17. */
  18. - (NSString *)logDeCrypt:(NSString *)input;
  19. @end
  20. NS_ASSUME_NONNULL_END