酷店

OpenStaticKeyEncryptDefine.h 972B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. //
  2. // OpenSecurityGuardSDK version 2.1.0
  3. //
  4. #import <Foundation/Foundation.h>
  5. /**
  6. * 安全凭证加解密模块使用加密算法
  7. */
  8. /**
  9. * aes128算法
  10. */
  11. extern NSInteger const OPEN_CIPHER_AES128;
  12. /**
  13. * aes192算法
  14. */
  15. extern NSInteger const OPEN_CIPHER_AES192;
  16. /**
  17. * aes256算法
  18. */
  19. extern NSInteger const OPEN_CIPHER_AES256;
  20. /**
  21. * 无效算法
  22. */
  23. extern NSInteger const OPEN_CIPHER_INVALID;
  24. /**
  25. * 安全凭证加解密模块使用的错误码
  26. */
  27. /**
  28. * seedSecret存储失败
  29. */
  30. extern NSInteger const OPEN_SAVE_FAILED;
  31. /**
  32. * seedSecret覆盖成功
  33. */
  34. extern NSInteger const OPEN_OVERRIDE_SUCCESS;
  35. /**
  36. * seedSecret存储成功
  37. */
  38. extern NSInteger const OPEN_SAVE_SUCCESS;
  39. /**
  40. * 删除 seedSecret失败
  41. */
  42. extern NSInteger const OPEN_REMOVE_FAILED;
  43. /**
  44. * 删除 seedSecret成功
  45. */
  46. extern NSInteger const OPEN_REMOVE_SUCCESS;
  47. /**
  48. * 删除失败,没有此项
  49. */
  50. extern NSInteger const OPEN_NO_SUCH_ITEM;