码迷,mamicode.com
首页 > 编程语言 > 详细

des对称加密算法 Invalid key length: 8 bytes

时间:2018-07-22 23:27:32      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:instance   uri   invalid   ide   bytes   val   des   加密算法   字符   

 Security.addProvider(new com.sun.crypto.provider.SunJCE());
Key key = new SecretKeySpec(secretKey.getBytes(), "DES");

encryptCipher = Cipher.getInstance("DES");
encryptCipher.init(Cipher.ENCRYPT_MODE, key); 
8个密钥字符串,3des是最少是16个密钥字符串。这个是关键。
基本思路:签约号取后10位+yyMMdd 16位作为des密钥,生成密钥的话就是8个密钥串。

des对称加密算法 Invalid key length: 8 bytes

标签:instance   uri   invalid   ide   bytes   val   des   加密算法   字符   

原文地址:https://www.cnblogs.com/jhuangsjtu/p/9351742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!