//psw:加密的文本,pswkey:加密的密码,即密钥
String psw="12345",pswkey="999";
//对该DES情况下加密,密钥需要为56位难以人工由string为根据设定,因此这里:
//借助密钥生成器,由new SecureRandom(pswkey.getBytes()),以pswkey为种子值生成密钥
KeyGenerator keyGenerator=KeyGenerator.getInstance("DES");
keyGenerator.init(56,new SecureRandom(pswkey.getBytes()));
Key key=keyGenerator.generateKey();
//加密,DES/ECB/pkcs5padding为:算法/模式/填充 的参数
//参数new BouncyCastleProvider()也可修改为"BC",要求前面要有Security.addProvider(new BouncyCastleProvider());
Cipher cipher=Cipher.getInstance("DES/ECB/pkcs5padding",new BouncyCastleProvider());
cipher.init(Cipher.ENCRYPT_MODE, key);
byte[] out=cipher.doFinal(psw.getBytes());
System.out.println(out);//字节数组,没有编码
//解密
Cipher cipher2=Cipher.getInstance("DES/ECB/pkcs5padding",new BouncyCastleProvider());
cipher2.init(Cipher.DECRYPT_MODE, key);
byte[] in=cipher2.doFinal(out);
System.out.println(new String(in));
java BouncyCastle 使用
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 错误 Class JavaLaunchHelper is implemented in both /Library...