JAVA 的3DES加密算法代码 谁有啊 需要CBC模式的

 我来答
zhl3301372
2012-03-17
知道答主
回答量:12
采纳率:0%
帮助的人:9.6万
展开全部
/**
* 生成密钥 保存在key.bat文件中
*/
public void SkeyDES(){
try {
//使用DESede算法获得密钥生成器
KeyGenerator generator=KeyGenerator.getInstance("DESede");
//初始化密钥生成器,设置密钥的长度为168个长度
generator.init(168);
SecretKey key=generator.generateKey();
//以序列化的方式保存密钥
FileOutputStream fos=new FileOutputStream("key.dat");
ObjectOutputStream outputStream=new ObjectOutputStream(fos);
outputStream.writeObject(key);
outputStream.close();
} catch (Exception e) {
e.printStackTrace();
}
}

/**
* cbc加密方式
*/
public byte[] SEncCBC(String s) throws Exception{
//从文件key.dat中读取密钥
FileInputStream in=new FileInputStream("key.dat");
ObjectInputStream obinput=new ObjectInputStream(in);
Key key=(Key)obinput.readObject();
obinput.close();
//生成初始向量
byte[] ints=new byte[8];
SecureRandom r=new SecureRandom(ints);
Cipher cipher=Cipher.getInstance("DESede/CBC/PKCS5Padding");
cipher.init(Cipher.ENCRYPT_MODE, key,r);
byte[] b=s.getBytes("utf-8");
byte[] byteencrypt=cipher.doFinal(b);
FileOutputStream out=new FileOutputStream("SENcCBC.dat");
out.write(ints);
out.write(byteencrypt);
out.close();
return byteencrypt;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式