/javaSecu/src/com/liwei/javasecu/serial/DESCoder.java

http://liweistudy.googlecode.com/ · Java · 138 lines · 44 code · 17 blank · 77 comment · 3 complexity · 615745c40ce8a1f3b2dee1a2ffce9841 MD5 · raw file

  1. package com.liwei.javasecu.serial;
  2. import java.security.Key;
  3. import java.security.SecureRandom;
  4. import javax.crypto.Cipher;
  5. import javax.crypto.KeyGenerator;
  6. import javax.crypto.SecretKey;
  7. import javax.crypto.SecretKeyFactory;
  8. import javax.crypto.spec.DESKeySpec;
  9. /**
  10. * DES??????
  11. *
  12. * <pre>
  13. * ?? DES?DESede(TripleDES,??3DES)?AES?Blowfish?RC2?RC4(ARCFOUR)
  14. * DES key size must be equal to 56
  15. * DESede(TripleDES) key size must be equal to 112 or 168
  16. * AES key size must be equal to 128, 192 or 256,but 192 and 256 bits may not be available
  17. * Blowfish key size must be multiple of 8, and can only range from 32 to 448 (inclusive)
  18. * RC2 key size must be between 40 and 1024 bits
  19. * RC4(ARCFOUR) key size must be between 40 and 1024 bits
  20. * ???? ???? JDK Document http://.../docs/technotes/guides/security/SunProviders.html
  21. * </pre>
  22. *
  23. * @author ??
  24. * @version 1.0
  25. * @since 1.0
  26. */
  27. public abstract class DESCoder extends Coder {
  28. /**
  29. * ALGORITHM ?? <br>
  30. * ???????????????key??size?????
  31. *
  32. * <pre>
  33. * DES key size must be equal to 56
  34. * DESede(TripleDES) key size must be equal to 112 or 168
  35. * AES key size must be equal to 128, 192 or 256,but 192 and 256 bits may not be available
  36. * Blowfish key size must be multiple of 8, and can only range from 32 to 448 (inclusive)
  37. * RC2 key size must be between 40 and 1024 bits
  38. * RC4(ARCFOUR) key size must be between 40 and 1024 bits
  39. * </pre>
  40. *
  41. * ?Key toKey(byte[] key)?????????
  42. * <code>SecretKey secretKey = new SecretKeySpec(key, ALGORITHM);</code> ??
  43. * <code>
  44. * DESKeySpec dks = new DESKeySpec(key);
  45. * SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(ALGORITHM);
  46. * SecretKey secretKey = keyFactory.generateSecret(dks);
  47. * </code>
  48. */
  49. public static final String ALGORITHM = "DES";
  50. /**
  51. * ????<br>
  52. *
  53. * @param key
  54. * @return
  55. * @throws Exception
  56. */
  57. public static Key toKey(byte[] key) throws Exception {
  58. DESKeySpec dks = new DESKeySpec(key);
  59. SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(ALGORITHM);
  60. SecretKey secretKey = keyFactory.generateSecret(dks);
  61. // ??????????????AES?Blowfish??????????????????
  62. // SecretKey secretKey = new SecretKeySpec(key, ALGORITHM);
  63. return secretKey;
  64. }
  65. /**
  66. * ??
  67. *
  68. * @param data
  69. * @param key
  70. * @return
  71. * @throws Exception
  72. */
  73. public static byte[] decrypt(byte[] data, String key) throws Exception {
  74. Key k = toKey(decryptBASE64(key));
  75. Cipher cipher = Cipher.getInstance(ALGORITHM);
  76. cipher.init(Cipher.DECRYPT_MODE, k);
  77. return cipher.doFinal(data);
  78. }
  79. /**
  80. * ??
  81. *
  82. * @param data
  83. * @param key
  84. * @return
  85. * @throws Exception
  86. */
  87. public static byte[] encrypt(byte[] data, String key) throws Exception {
  88. Key k = toKey(decryptBASE64(key));
  89. Cipher cipher = Cipher.getInstance(ALGORITHM);
  90. cipher.init(Cipher.ENCRYPT_MODE, k);
  91. return cipher.doFinal(data);
  92. }
  93. /**
  94. * ????????????
  95. *
  96. * @return
  97. * @throws Exception
  98. */
  99. public static String initKey() throws Exception {
  100. return initKey(null);
  101. }
  102. /**
  103. * ???????????
  104. *
  105. * @param seed
  106. * @return
  107. * @throws Exception
  108. */
  109. public static String initKey(String seed) throws Exception {
  110. SecureRandom secureRandom = null;
  111. if (seed != null) {
  112. secureRandom = new SecureRandom(decryptBASE64(seed));
  113. } else {
  114. secureRandom = new SecureRandom();
  115. }
  116. KeyGenerator kg = KeyGenerator.getInstance(ALGORITHM);
  117. kg.init(secureRandom);
  118. SecretKey secretKey = kg.generateKey();
  119. return encryptBASE64(secretKey.getEncoded());
  120. }
  121. }