解决Linux操作系统下AES解密失败的问题
現(xiàn)象描述:
windows上加解密正常,linux上加密正常,解密時(shí)發(fā)生如下異常:
javax.crypto.BadPaddingException: Given final block not properly padded
at com.sun.crypto.provider.SunJCE_f.b(DashoA13*…)
at com.sun.crypto.provider.SunJCE_f.b(DashoA13*…)
at com.sun.crypto.provider.AESCipher.engineDoFinal(DashoA13*…)
at javax.crypto.Cipher.doFinal(DashoA13*…)
at chb.test.crypto.AESUtils.crypt(AESUtils.java:386)
at chb.test.crypto.AESUtils.AesDecrypt(AESUtils.java:254)
at chb.test.crypto.AESUtils.main(AESUtils.java:40)
解決方法:
經(jīng)過(guò)檢查之后,定位在生成KEY的方法上,如下:
修改到如下方式,問(wèn)題解決:
public static SecretKey getKey(String strKey) {try { KeyGenerator _generator = KeyGenerator.getInstance( "AES" );SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG" );secureRandom.setSeed(strKey.getBytes());_generator.init(128,secureRandom);return _generator.generateKey();} catch (Exception e) {throw new RuntimeException( " 初始化密鑰出現(xiàn)異常 " );}}原因分析
SecureRandom 實(shí)現(xiàn)完全隨操作系統(tǒng)本身的內(nèi)部狀態(tài),除非調(diào)用方在調(diào)用 getInstance 方法之後又調(diào)用了 setSeed 方法;該實(shí)現(xiàn)在 windows 上每次生成的 key 都相同,但是在 solaris 或部分 linux 系統(tǒng)上則不同。
總結(jié)
以上是生活随笔為你收集整理的解决Linux操作系统下AES解密失败的问题的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: java.sql.SQLSyntaxEr
- 下一篇: java.sql.SQLExceptio