我根据mkyong 的 JCE Encryption – Data Encryption Standard (DES) Tutorial做了一个 DES Util 类
这是我的课:
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import tw.com.januarytc.android.singularsdk.lib.JsLib;
import android.util.Log;
public class DESUtil
{
private KeyGenerator keyGen=null;
private SecretKey sKey=null;
private Cipher desCip=null;
/**
* Init. DES utility class
* @return boolean
*/
public boolean init()
{
boolean b=false;
try
{
keyGen=KeyGenerator.getInstance("DES");
sKey=keyGen.generateKey();
desCip=Cipher.getInstance("DES/ECB/PKCS5Padding");
b=true;
}
catch(Exception e)
{
Log.d(JsLib.TAG, "Init DESUtil failed: "+e.toString());
e.printStackTrace();
b=false;
}
return b;
}
/**
* Encrypt string with DES
* @param str - Original string
* @return java.lang.String DES encrypted string
* @throws IllegalStateException
*/
public String encryptString(String str) throws IllegalStateException
{
if(keyGen==null || sKey==null || desCip==null){throw new IllegalStateException("DESUtil class has not been initialized.");}
String ret="";
try
{
desCip.init(Cipher.ENCRYPT_MODE, sKey);
ret=new String(desCip.doFinal(str.getBytes("UTF-8")));
}
catch(Exception e)
{
e.printStackTrace();
ret="";
}
return ret;
}
/**
* Decrypt string which encrypted by DES
* @param str - DES encrypted string
* @return java.lang.String Original string
* @throws IllegalStateException
*/
public String decryptString(String strDes) throws IllegalStateException
{
if(keyGen==null || sKey==null || desCip==null){throw new IllegalStateException("DESUtil class has not been initialized.");}
String ret="";
try
{
desCip.init(Cipher.DECRYPT_MODE, sKey);
ret=new String(desCip.doFinal(strDes.getBytes("UTF-8")));
}
catch(Exception e)
{
e.printStackTrace();
ret="";
}
return ret;
}
}
正如维基所说:
在密码学中,三重 DES 是三重数据加密算法(TDEA 或三重 DEA)块密码的通用名称,它将数据加密标准 (DES) 密码算法应用于每个数据块三次。
我只是想知道如果我用 DES 加密一个字符串 3 次会怎样......它会等于 3DES 吗?
谢谢你的建议,对不起我的英语不好~