RSA.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. package com.yihu.ehr.util.encrypt;
  2. import com.yihu.ehr.util.log.LogService;
  3. import java.util.Base64;
  4. import javax.crypto.Cipher;
  5. import java.security.*;
  6. import java.security.interfaces.RSAPrivateKey;
  7. import java.security.interfaces.RSAPublicKey;
  8. import java.security.spec.InvalidKeySpecException;
  9. import java.security.spec.PKCS8EncodedKeySpec;
  10. import java.security.spec.X509EncodedKeySpec;
  11. import java.util.HashMap;
  12. /**
  13. * RSA加密辅助类,采用Base64编码
  14. *
  15. * @created Air 2015/6/02.
  16. */
  17. public class RSA {
  18. public static final String PUBLIC_KEY = "public";
  19. public static final String PRIVATE_KEY = "private";
  20. public static final String KEY_ALGORITHM = "RSA";
  21. /**
  22. * 生成公钥和私钥
  23. *
  24. * @throws NoSuchAlgorithmException
  25. */
  26. public static HashMap<String, Key> generateKeys() throws NoSuchAlgorithmException {
  27. KeyPairGenerator keyPairGen = KeyPairGenerator.getInstance(KEY_ALGORITHM);
  28. keyPairGen.initialize(1024);
  29. KeyPair keyPair = keyPairGen.generateKeyPair();
  30. RSAPublicKey publicKey = (RSAPublicKey) keyPair.getPublic();
  31. RSAPrivateKey privateKey = (RSAPrivateKey) keyPair.getPrivate();
  32. HashMap<String, Key> map = new HashMap<>();
  33. map.put(PUBLIC_KEY, publicKey);
  34. map.put(PRIVATE_KEY, privateKey);
  35. return map;
  36. }
  37. public static String encodeKey(Key key) {
  38. return new String(Base64.getEncoder().encode(key.getEncoded()));
  39. }
  40. public static Key genPrivateKey(String key) {
  41. byte[] bytes = Base64.getDecoder().decode(key);
  42. PKCS8EncodedKeySpec pkcs8KeySpec = new PKCS8EncodedKeySpec(bytes);
  43. try {
  44. KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORITHM);
  45. return keyFactory.generatePrivate(pkcs8KeySpec);
  46. } catch (NoSuchAlgorithmException | InvalidKeySpecException ex) {
  47. LogService.getLogger(RSA.class).error(ex.getMessage());
  48. }
  49. return null;
  50. }
  51. public static Key genPublicKey(String key) {
  52. byte[] bytes = Base64.getDecoder().decode(key);
  53. X509EncodedKeySpec x509KeySpec = new X509EncodedKeySpec(bytes);
  54. try {
  55. KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORITHM);
  56. return keyFactory.generatePublic(x509KeySpec);
  57. } catch (NoSuchAlgorithmException | InvalidKeySpecException ex) {
  58. LogService.getLogger(RSA.class).error(ex.getMessage());
  59. }
  60. return null;
  61. }
  62. /**
  63. * @param data 明文
  64. * @param key 密钥
  65. * @return Base64String密文
  66. * @throws Exception
  67. */
  68. public static String encrypt(String data, Key key) throws Exception {
  69. Cipher cipher = Cipher.getInstance(KEY_ALGORITHM);
  70. cipher.init(Cipher.ENCRYPT_MODE, key);
  71. return new String(Base64.getEncoder().encode(cipher.doFinal(data.getBytes())));
  72. }
  73. /**
  74. * @param data Base64String密文
  75. * @param key 密钥
  76. * @return 明文
  77. * @throws Exception
  78. */
  79. public static String decrypt(String data, Key key) throws Exception {
  80. Cipher cipher = Cipher.getInstance(KEY_ALGORITHM);
  81. cipher.init(Cipher.DECRYPT_MODE, key);
  82. //return new String(cipher.doFinal(HexEncode.toBytes(data)));
  83. return new String(cipher.doFinal(Base64.getDecoder().decode(data)));
  84. }
  85. /**
  86. * 通过字符串私钥加密
  87. * @param data 明文
  88. * @param privateKey 字符串私钥
  89. * @return 密文
  90. * @throws Exception
  91. */
  92. public static String encryptByPriKey(String data, String privateKey) throws Exception {
  93. Cipher cipher = Cipher.getInstance(KEY_ALGORITHM);
  94. cipher.init(Cipher.ENCRYPT_MODE, genPrivateKey(privateKey));
  95. return new String(Base64.getEncoder().encode(cipher.doFinal(data.getBytes())));
  96. }
  97. }