1、C# AES加密解密
//作者: V: jbossjf
public static string Encrypt(string key, string clearText)
{
byte[] clearBytes = Encoding.Unicode.GetBytes(clearText);
using (Aes encryptor = Aes.Create())
{
Rfc2898DeriveBytes pdb = new Rfc2898DeriveBytes(key, new byte[] { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64 });
encryptor.Key = pdb.GetBytes(32);
encryptor.IV = pdb.GetBytes(16);
using (MemoryStream ms = new MemoryStream())
{
using (CryptoStream cs = new CryptoStream(ms, encryptor.CreateEncryptor(), CryptoStreamMode.Write))
{
cs.Write(clearBytes, 0, clearBytes.Length);
cs.Close();
}
clearText = Convert.ToBase64String(ms.ToArray());
}
}
return clearText;
}
public static string Decrypt(string key, string cipherText)
{
cipherText = cipherText.Replace(" ", "+");
byte[] cipherBytes = Convert.FromBase64String(cipherText);
using (Aes encryptor = Aes.Create())
{
Rfc2898DeriveBytes pdb = new Rfc2898DeriveBytes(key, new byte[] { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64 });
encryptor.Key = pdb.GetBytes(32);
encryptor.IV = pdb.GetBytes(16);
using (MemoryStream ms = new MemoryStream())
{
using (CryptoStream cs = new CryptoStream(ms, encryptor.CreateDecryptor(), CryptoStreamMode.Write))
{
cs.Write(cipherBytes, 0, cipherBytes.Length);
cs.Close();
}
cipherText = Encoding.Unicode.GetString(ms.ToArray());
}
}
return cipherText;
}
2、C# DES加密解密
/// <summary>
/// DES加密字符串
/// </summary>
/// <param name="encryptString">待加密的字符串
/// <param name="encryptKey">加密密钥,要求为8位
/// <returns>加密成功返回加密后的字符串,失败返回源串</returns>
public static string EncryptDES(string encryptString, string encryptKey)
{
try
{
byte[] rgbKey = Encoding.UTF8.GetBytes(encryptKey);
byte[] rgbIV = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };
byte[] inputByteArray = Encoding.UTF8.GetBytes(encryptString);
using (DESCryptoServiceProvider dCSP = new DESCryptoServiceProvider())
{
MemoryStream mStream = new MemoryStream();
using (CryptoStream cStream = new CryptoStream(mStream, dCSP.CreateEncryptor(rgbKey, rgbIV), CryptoStreamMode.Write))
{
cStream.Write(inputByteArray, 0, inputByteArray.Length);
cStream.FlushFinalBlock();
return Convert.ToBase64String(mStream.ToArray());
}
}
}
catch
{
return encryptString;
}
}
/// <summary>
/// DES解密字符串
/// </summary>
/// <param name="decryptString">待解密的字符串
/// <param name="decryptKey">解密密钥,要求为8位,和加密密钥相同
/// <returns>解密成功返回解密后的字符串,失败返回空</returns>
public static string DecryptDES(string decryptString, string decryptKey)
{
try
{
byte[] inputByteArray = Convert.FromBase64String(decryptString);
byte[] rgbKey = Encoding.UTF8.GetBytes(decryptKey);
byte[] rgbIV = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };
using (DESCryptoServiceProvider des = new DESCryptoServiceProvider())
{
// 如果加密是没设置模式和填充,则解密也不需要设置
//des.Mode = CipherMode.ECB;
//des.Padding = PaddingMode.PKCS7;
MemoryStream mStream = new MemoryStream();
using (CryptoStream cStream = new CryptoStream(mStream, des.CreateDecryptor(rgbKey, rgbIV), CryptoStreamMode.Write))
{
cStream.Write(inputByteArray, 0, inputByteArray.Length);
cStream.FlushFinalBlock();
}
return Encoding.UTF8.GetString(mStream.ToArray());
}
}
catch (Exception e)
{
return string.Empty; ;
}
}
3、Java DES加密
public String encryptString(String str,String strKey) {
DESKeySpec dks = new DESKeySpec(strKey.getBytes("UTF-8"));
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES", BouncyCastleProvider.PROVIDER_NAME);
Key key = keyFactory.generateSecret(dks);
// 这里指定了CBC模式. 如果是Cipher.getInstance("DES")则是EBC模式
Cipher encryptCipher = Cipher.getInstance("DES/ECB/PKCS5Padding",BouncyCastleProvider.PROVIDER_NAME);
encryptCipher.init(Cipher.ENCRYPT_MODE, key);
return new String(Base64.encodeBase64(encryptCipher.doFinal(str.getBytes("UTF-8")), true), "UTF-8").replaceAll("\n", "");
}