酷店

OpenSecureSignatureDefine.h 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //
  2. // OpenSecurityGuardSDK version 2.1.0
  3. //
  4. /**
  5. * 签名调用中,OpenSecurityGuardParamContex中paramDict参数中使用到的key
  6. */
  7. /**
  8. * 签名接口入参key,top, umid签名使用
  9. */
  10. extern NSString* const OPEN_KEY_SIGN_INPUT;
  11. /**
  12. * seedkey,top 签名使用
  13. */
  14. extern NSString* const OPEN_KEY_SIGN_SEEDKEY;
  15. /**
  16. * atlaskey,atlas 签名使用
  17. */
  18. extern NSString* const OPEN_KEY_SIGN_ATLAS;
  19. /**
  20. * 签名调用中,OpenSecurityGuardParamContex中requestType参数中使用到的值
  21. */
  22. /**
  23. * top签名
  24. */
  25. extern NSInteger const OPEN_ENUM_SIGN_TOP;
  26. /**
  27. * umid签名
  28. */
  29. extern NSInteger const OPEN_ENUM_SIGN_UMID;
  30. /**
  31. * 原始top签名(无seekKey)
  32. */
  33. extern NSInteger const OPEN_ENUM_SIGN_TOP_OLD;
  34. /**
  35. * common hmac sha1签名
  36. */
  37. extern NSInteger const OPEN_ENUM_SIGN_COMMON_HMAC_SHA1;
  38. /**
  39. * common md5签名
  40. */
  41. extern NSInteger const OPEN_ENUM_SIGN_COMMON_MD5;
  42. /**
  43. * atlas签名
  44. */
  45. extern NSInteger const OPEN_ENUM_SIGN_ATLAS;
  46. /**
  47. * 带模拟器检测功能的hmac-sha1签名
  48. */
  49. extern NSInteger const OPEN_ENUM_SIGN_SIM_HMAC_SHA1;
  50. /**
  51. * Fast atlas签名 签名String长度50
  52. */
  53. extern NSInteger const OPEN_ENUM_SIGN_ATLAS_FAST;
  54. /**
  55. * Fast atlas签名2
  56. */
  57. extern NSInteger const OPEN_ENUM_SIGN_ATLAS_FAST2;
  58. /**
  59. * 无效签名类型
  60. */
  61. extern NSInteger const OPEN_ENUM_SIGN_INVALID;