des3 java_小代码JAVA文件加密(DES3) | 学步园

package com.cit.webservice;

import java.io.IOException;

import java.io.InputStream;

import java.io.ObjectInputStream;

import java.io.OutputStream;

import java.security.InvalidKeyException;

import java.security.Key;

import java.security.NoSuchAlgorithmException;

import java.security.SecureRandom;

import java.security.Security;

import javax.crypto.Cipher;

import javax.crypto.CipherInputStream;

import javax.crypto.CipherOutputStream;

import javax.crypto.KeyGenerator;

import javax.crypto.NoSuchPaddingException;

public class DESCipherUtil {

public static Key createKey() throws NoSuchAlgorithmException {// 创建密钥

Security.insertProviderAt(new com.sun.crypto.provider.SunJCE(), 1);

KeyGenerator generator = KeyGenerator.getInstance("DES");

generator.init(new SecureRandom());

Key key = generator.generateKey();

return key;

}

public static Key getKey(InputStream is) {

try {

ObjectInputStream ois = new ObjectInputStream(is);

return (Key) ois.readObject();

} catch (Exception e) {

e.printStackTrace();

throw new RuntimeException(e);

}

}

public static Cipher getCipher(Key key,int mode) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException{

Cipher cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");

cipher.init(mode, key);

System.out.println(mode);

return cipher;

}

public static void decrypt(InputStream is ,OutputStream os, Key key) throws IOException, InvalidKeyException, NoSuchAlgorithmException, NoSuchPaddingException{

byte[] buff = new byte[1024];

int count = 0;

CipherInputStream cis = new CipherInputStream(is,getCipher(key,Cipher.DECRYPT_MODE));

while ((count = cis.read( buff)) >=0) {

os.write( buff, 0, count);

}

cis.close();

os.flush();

}

public static void encrypt(InputStream is ,OutputStream os, Key key) throws IOException, InvalidKeyException, NoSuchAlgorithmException, NoSuchPaddingException{

byte[] buff = new byte[1024];

int count = 0;

CipherOutputStream cos = new CipherOutputStream(os,getCipher(key,Cipher.ENCRYPT_MODE));

while ((count = is.read(buff)) >=0) {

cos.write(buff, 0, count);

}

cos.flush();

cos.close();

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值