Guest User

Untitled

a guest
Oct 26th, 2010
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. /**
  2. * The des-cbc-crc encryption type.
  3. */
  4. DES_CBC_CRC( 1 ),
  5.  
  6. /**
  7. * The des-cbc-md4 encryption type.
  8. */
  9. DES_CBC_MD4( 2 ),
  10.  
  11. /**
  12. * The des-cbc-md5 encryption type.
  13. */
  14. DES_CBC_MD5( 3 ),
  15.  
  16. /**
  17. * The reserved (4) encryption type.
  18. */
  19. RESERVED4( 4 ),
  20.  
  21. /**
  22. * The des3-cbc-md5 encryption type.
  23. */
  24. DES3_CBC_MD5( 5 ),
  25.  
  26. /**
  27. * The reserved (6) encryption type.
  28. */
  29. RESERVED6( 6 ),
  30.  
  31. /**
  32. * The des3-cbc-sha1 encryption type.
  33. */
  34. DES3_CBC_SHA1( 7 ),
  35.  
  36. /**
  37. * The dsaWithSHA1-CmsOID encryption type.
  38. */
  39. DSAWITHSHA1_CMSOID( 9 ),
  40.  
  41. /**
  42. * The md5WithRSAEncryption-CmsOID encryption type.
  43. */
  44. MD5WITHRSAENCRYPTION_CMSOID( 10 ),
  45.  
  46. /**
  47. * The sha1WithRSAEncryption-CmsOID encryption type.
  48. */
  49. SHA1WITHRSAENCRYPTION_CMSOID( 11 ),
  50.  
  51. /**
  52. * The rc2CBC-EnvOID encryption type.
  53. */
  54. RC2CBC_ENVOID( 12 ),
  55.  
  56. /**
  57. * The rsaEncryption-EnvOID encryption type.
  58. */
  59. RSAENCRYPTION_ENVOID( 13 ),
  60.  
  61. /**
  62. * The rsaES-OAEP-ENV-OID encryption type.
  63. */
  64. RSAES_OAEP_ENV_OID( 14 ),
  65.  
  66. /**
  67. * The des-ede3-cbc-Env-OID encryption type.
  68. */
  69. DES_EDE3_CBC_ENV_OID( 15 ),
  70.  
  71. /**
  72. * The des3-cbc-sha1-kd encryption type.
  73. */
  74. DES3_CBC_SHA1_KD( 16 ),
  75.  
  76. /**
  77. * The aes128-cts-hmac-sha1-96 encryption type.
  78. */
  79. AES128_CTS_HMAC_SHA1_96( 17 ),
  80.  
  81. /**
  82. * The aes256-cts-hmac-sha1-96 encryption type.
  83. */
  84. AES256_CTS_HMAC_SHA1_96( 18 ),
  85.  
  86. /**
  87. * The rc4-hmac encryption type.
  88. */
  89. RC4_HMAC( 23 ),
  90.  
  91. /**
  92. * The rc4-hmac-exp encryption type.
  93. */
  94. RC4_HMAC_EXP( 24 ),
  95.  
  96. /**
  97. * The subkey-keymaterial encryption type.
  98. */
  99. SUBKEY_KEYMATERIAL( 65 ),
  100.  
  101. /**
  102. * The rc4-md4 encryption type.
  103. */
  104. RC4_MD4( -128 ),
  105.  
  106. /**
  107. * The c4-hmac-old encryption type.
  108. */
  109. RC4_HMAC_OLD( -133 ),
  110.  
  111. /**
  112. * The rc4-hmac-old-exp encryption type.
  113. */
  114. RC4_HMAC_OLD_EXP( -135 );
Advertisement
Add Comment
Please, Sign In to add comment