洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.5 KiB

7 months ago
  1. //
  2. // APSign.h
  3. // APPSecuritySDK-Sign
  4. //
  5. // Created by eric on 2021/2/25.
  6. // Copyright © 2021 Alipay. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface APSign : NSObject
  11. /*
  12. * getColorInfo
  13. *
  14. * @param bizToken
  15. * @param bizParam
  16. * @param extParams
  17. * @param errInfo
  18. *
  19. * @return
  20. */
  21. + (NSString*) getColorInfo: (NSString*) bizToken
  22. param: (NSString*) bizParam
  23. ext: (NSDictionary*) extParams
  24. error: (NSError **) errInfo;
  25. /*
  26. * preColorInfo
  27. *
  28. * @param userAction ,
  29. * @param extParams
  30. *
  31. * @return
  32. */
  33. + (NSString*) preColorInfo: (int) userAction
  34. ext: (NSDictionary*) extParams
  35. error: (NSError **) errInfo;
  36. /*
  37. * preColorInfo
  38. *
  39. * @param userAction ,
  40. * @param extParams
  41. *
  42. * @return
  43. */
  44. + (NSString*) preColorInfoForString: (int) userAction
  45. ext: (NSString*) extParams
  46. error: (NSError **) errInfo;
  47. @end
  48. NS_ASSUME_NONNULL_END