java易懂易用的MD5加密(可直接运行) (1)

 更新时间:2008年11月21日 19:35:38   作者:  
出于安全考虑,网络的传输中经常对传输数据做加密和编码处理,其中涉及以下几种

5、根据需要可以去掉字符串的换行符号 
复制代码 代码如下:

/**
* 去掉字符串的换行符号
* base64编码3-DES的数据时,得到的字符串有换行符号,根据需要可以去掉
*/
private String filter(String str)
{
String output = null;
StringBuffer sb = new StringBuffer();
for(int i = 0; i < str.length(); i++)
{
int asc = str.charAt(i);
if(asc != 10 && asc != 13)
sb.append(str.subSequence(i, i + 1));
}
output = new String(sb);
return output;
}

6、对字符串进行URLDecoder.encode(strEncoding)编码
复制代码 代码如下:

/**
* 对字符串进行URLDecoder.encode(strEncoding)编码
* @param String src 要进行编码的字符串
*
* @return String 进行编码后的字符串
*/
public String getURLEncode(String src)
{
String requestValue="";
try{

requestValue = URLEncoder.encode(src);
}
catch(Exception e){
e.printStackTrace();
}

return requestValue;
}

7、对字符串进行URLDecoder.decode(strEncoding)解码
复制代码 代码如下:

/**
* 对字符串进行URLDecoder.decode(strEncoding)解码
* @param String src 要进行解码的字符串
*
* @return String 进行解码后的字符串
*/
public String getURLDecoderdecode(String src)
{
String requestValue="";
try{

requestValue = URLDecoder.decode(src);
}
catch(Exception e){
e.printStackTrace();
}

return requestValue;
}

8、进行3-DES解密(密钥匙等同于加密的密钥匙)
复制代码 代码如下:

/**
*
*进行3-DES解密(密钥匙等同于加密的密钥匙)。
* @param byte[] src 要进行3-DES解密byte[]
* @param String spkey分配的SPKEY
* @return String 3-DES解密后的String
*/
public String deCrypt(byte[] debase64,String spKey)
{
String strDe = null;
Cipher cipher = null;
try
{
cipher=Cipher.getInstance("DESede");
byte[] key = getEnKey(spKey);
DESedeKeySpec dks = new DESedeKeySpec(key);
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DESede");
SecretKey sKey = keyFactory.generateSecret(dks);
cipher.init(Cipher.DECRYPT_MODE, sKey);
byte ciphertext[] = cipher.doFinal(debase64);
strDe = new String(ciphertext,"UTF-16LE");
}
catch(Exception ex)
{
strDe = "";
ex.printStackTrace();
}
return strDe;
经过以上步骤就可以完成MD5加密,3-DES加密、base64编码传输、base64解码、3-DES解密得到原文。

相关文章

最新评论