当前位置:   article > 正文

ASE加解密工具_aes emoji 解密

aes emoji 解密
  1. package com.util;
  2. import java.io.IOException;
  3. import java.io.UnsupportedEncodingException;
  4. import java.security.InvalidKeyException;
  5. import java.security.NoSuchAlgorithmException;
  6. import java.security.SecureRandom;
  7. import javax.crypto.BadPaddingException;
  8. import javax.crypto.Cipher;
  9. import javax.crypto.IllegalBlockSizeException;
  10. import javax.crypto.KeyGenerator;
  11. import javax.crypto.NoSuchPaddingException;
  12. import javax.crypto.SecretKey;
  13. import javax.crypto.spec.SecretKeySpec;
  14. import sun.misc.BASE64Decoder;
  15. import sun.misc.BASE64Encoder;
  16. /**
  17. * 利用AES对string进行加密、解密;
  18. * 非常注意:encodeRules就是秘钥,是需要自己保密的钥匙,对同一个内容不许有同样的秘钥进行加密和解密才能够正确识别;
  19. * @author admin
  20. *
  21. */
  22. public class AESUtils {
  23. /*
  24. * 加密 1.构造密钥生成器 2.根据ecnodeRules规则初始化密钥生成器 3.产生密钥 4.创建和初始化密码器 5.内容加密 6.返回字符串(非常注意:返回的字符串可能会因为过长而自动进行换行)
  25. */
  26. public static String AESEncode(String encodeRules, String content) {
  27. String result = "";
  28. try {
  29. // 1.构造密钥生成器,指定为AES算法,不区分大小写
  30. KeyGenerator keygen = KeyGenerator.getInstance("AES");
  31. // 2.根据ecnodeRules规则初始化密钥生成器
  32. // 生成一个128位的随机源,根据传入的字节数组
  33. keygen.init(128, new SecureRandom(encodeRules.getBytes()));
  34. // 3.产生原始对称密钥
  35. SecretKey original_key = keygen.generateKey();
  36. // 4.获得原始对称密钥的字节数组
  37. byte[] raw = original_key.getEncoded();
  38. // 5.根据字节数组生成AES密钥
  39. SecretKey key = new SecretKeySpec(raw, "AES");
  40. // 6.根据指定算法AES自成密码器
  41. Cipher cipher = Cipher.getInstance("AES");
  42. // 7.初始化密码器,第一个参数为加密(Encrypt_mode)或者解密解密(Decrypt_mode)操作,第二个参数为使用的KEY
  43. cipher.init(Cipher.ENCRYPT_MODE, key);
  44. // 8.获取加密内容的字节数组(这里要设置为utf-8)不然内容中如果有中文和英文混合中文就会解密为乱码
  45. byte[] byte_encode = content.getBytes("utf-8");
  46. // 9.根据密码器的初始化方式--加密:将数据加密
  47. byte[] byte_AES = cipher.doFinal(byte_encode);
  48. // 10.将加密后的数据转换为字符串
  49. // 这里用Base64Encoder中会找不到包
  50. // 解决办法:
  51. // 在项目的Build path中先移除JRE System Library,再添加库JRE System
  52. // Library,重新编译后就一切正常了。
  53. result= new String(new BASE64Encoder().encode(byte_AES));
  54. } catch (NoSuchAlgorithmException e) {
  55. e.printStackTrace();
  56. } catch (NoSuchPaddingException e) {
  57. e.printStackTrace();
  58. } catch (InvalidKeyException e) {
  59. e.printStackTrace();
  60. } catch (IllegalBlockSizeException e) {
  61. e.printStackTrace();
  62. } catch (BadPaddingException e) {
  63. e.printStackTrace();
  64. } catch (UnsupportedEncodingException e) {
  65. e.printStackTrace();
  66. }finally{
  67. return result;
  68. }
  69. }
  70. /*
  71. * 非常注意:因为通过加密后的字符串可能会很长,并且字符串内可能有自动的换行,因此最好对字符串content进行replaceAll("\r|\n","")处理,否则会报16进制类似的异常
  72. * 解密 解密过程: 1.同加密1-4步 2.将加密后的字符串反纺成byte[]数组 3.将加密内容解密
  73. */
  74. public static String AESDncode(String encodeRules, String content) {
  75. String result = "";
  76. try {
  77. // 1.构造密钥生成器,指定为AES算法,不区分大小写
  78. KeyGenerator keygen = KeyGenerator.getInstance("AES");
  79. // 2.根据ecnodeRules规则初始化密钥生成器
  80. // 生成一个128位的随机源,根据传入的字节数组
  81. keygen.init(128, new SecureRandom(encodeRules.getBytes()));
  82. // 3.产生原始对称密钥
  83. SecretKey original_key = keygen.generateKey();
  84. // 4.获得原始对称密钥的字节数组
  85. byte[] raw = original_key.getEncoded();
  86. // 5.根据字节数组生成AES密钥
  87. SecretKey key = new SecretKeySpec(raw, "AES");
  88. // 6.根据指定算法AES自成密码器
  89. Cipher cipher = Cipher.getInstance("AES");
  90. // 7.初始化密码器,第一个参数为加密(Encrypt_mode)或者解密(Decrypt_mode)操作,第二个参数为使用的KEY
  91. cipher.init(Cipher.DECRYPT_MODE, key);
  92. // 8.将加密并编码后的内容解码成字节数组
  93. byte[] byte_content = new BASE64Decoder().decodeBuffer(content);
  94. /*
  95. * 解密
  96. */
  97. byte[] byte_decode = cipher.doFinal(byte_content);
  98. result = new String(byte_decode, "utf-8");
  99. } catch (NoSuchAlgorithmException e) {
  100. e.printStackTrace();
  101. } catch (NoSuchPaddingException e) {
  102. e.printStackTrace();
  103. } catch (InvalidKeyException e) {
  104. e.printStackTrace();
  105. } catch (IOException e) {
  106. e.printStackTrace();
  107. } catch (IllegalBlockSizeException e) {
  108. e.printStackTrace();
  109. } catch (BadPaddingException e) {
  110. e.printStackTrace();
  111. }finally{
  112. return result;
  113. }
  114. }
  115. public static void main(String[] args) {
  116. String content = "123456";
  117. String encodeStr = AESUtils.AESEncode(StringConstant.AESKey, content);
  118. System.out.println("加密后:"+encodeStr);
  119. String decodeStr = AESUtils.AESDncode(StringConstant.AESKey, encodeStr);
  120. System.out.println("解密后:"+decodeStr);
  121. }
  122. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/203023
推荐阅读
相关标签
  

闽ICP备14008679号