import javax.crypto.KeyGenerator;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.SecretKey;
import java.security.NoSuchAlgorithmException;
import java.security.Security;
import com.sun.crypto.provider.SunJCE;
/**
* DES加密的,文件*有两个方法,加密、解密
* @author Lion
* @author www.lionsky.net
*/
public class DES {
private String Algorithm = "DES";
private KeyGenerator keygen;
private SecretKey deskey;
private Cipher c;
private byte[] cipherByte;
/**
* 初始化 DES 实例
*/
public DES() {
init();
}
public void init() {
Security.addProvider(new com.sun.crypto.provider.SunJCE());
try {
keygen = KeyGenerator.getInstance(Algorithm);
deskey = keygen.generateKey();
c = Cipher.getInstance(Algorithm);
}
catch(NoSuchAlgorithmException ex){
ex.printStackTrace();
}
catch(NoSuchPaddingException ex){
ex.printStackTrace();
}
}
/**
* 对 String 进行加密
* @param str 要加密的数据
* @return 返回加密后的 byte 数组
*/
public byte[] createEncryptor(String str) {
try {
c.init(Cipher.ENCRYPT_MODE, deskey);
cipherByte = c.doFinal(str.getBytes());
}
catch(java.security.InvalidKeyException ex){
ex.printStackTrace();
}
catch(javax.crypto.BadPaddingException ex){
ex.printStackTrace();
}
catch(javax.crypto.IllegalBlockSizeException ex){
ex.printStackTrace();
}
return cipherByte;
}
/**
* 对 Byte 数组进行解密
* @param buff 要解密的数据
* @return 返回加密后的 String
*/
public String createDecryptor(byte[] buff) {
try {
c.init(Cipher.DECRYPT_MODE, deskey);
cipherByte = c.doFinal(buff);
}
catch(java.security.InvalidKeyException ex){
ex.printStackTrace();
}
catch(javax.crypto.BadPaddingException ex){
ex.printStackTrace();
}
catch(javax.crypto.IllegalBlockSizeException ex){
ex.printStackTrace();
}
return (new String(cipherByte));
}
}
我对DES的原理不是很懂,从网上下了上面这段程序.
我用DES加密是正常的,但解密时总是报错:
javax.crypto.IllegalBlockSizeException: Input length<with padding> not multiple of 8 bytes
请问是否需要补位,如果要补位的化该怎么做?
还有一个问题,就是用这段加密函数加密得到的结果为什么会不一样?难道密钥是随即生成的?
5 个解决方案
#1
实例化 cipher 对象时,需要指定补位算法。
你在实例化 Cipher对象时,使用以下语句,就应该没有问题了。
Cipher cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
你在实例化 Cipher对象时,使用以下语句,就应该没有问题了。
Cipher cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
#2
参考一下:
http://www.yesky.com/SoftChannel/72342371961929728/20050217/1911753.shtml,里面讲得比较详细
http://www.yesky.com/SoftChannel/72342371961929728/20050217/1911753.shtml,里面讲得比较详细
#3
hehe,pls read this artile.
http://www.di-mgt.com.au/cryptopad.html
http://www.di-mgt.com.au/cryptopad.html
#4
我在用类似的算法进行加密时也出现这样的算法,提示说:Given final block not properly padded,
我就是用的("DES/ECB/PKCS5Padding");算法!不知道什么原因!这个密码自然是随机产生的了!
我就是用的("DES/ECB/PKCS5Padding");算法!不知道什么原因!这个密码自然是随机产生的了!
#5
补位有好几种方式,有0补位,有用相同的数字补位的等等,只要在cipher初始化时给一个何时的padding就可以了!
#1
实例化 cipher 对象时,需要指定补位算法。
你在实例化 Cipher对象时,使用以下语句,就应该没有问题了。
Cipher cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
你在实例化 Cipher对象时,使用以下语句,就应该没有问题了。
Cipher cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
#2
参考一下:
http://www.yesky.com/SoftChannel/72342371961929728/20050217/1911753.shtml,里面讲得比较详细
http://www.yesky.com/SoftChannel/72342371961929728/20050217/1911753.shtml,里面讲得比较详细
#3
hehe,pls read this artile.
http://www.di-mgt.com.au/cryptopad.html
http://www.di-mgt.com.au/cryptopad.html
#4
我在用类似的算法进行加密时也出现这样的算法,提示说:Given final block not properly padded,
我就是用的("DES/ECB/PKCS5Padding");算法!不知道什么原因!这个密码自然是随机产生的了!
我就是用的("DES/ECB/PKCS5Padding");算法!不知道什么原因!这个密码自然是随机产生的了!
#5
补位有好几种方式,有0补位,有用相同的数字补位的等等,只要在cipher初始化时给一个何时的padding就可以了!