标签:bst static mode 相同 密钥 orm gb2312 要求 str
干净的DES加密
/// <summary>
/// DES加密字符串
/// </summary>
/// <param name="pToEncrypt">待加密的字符串</param>
/// <param name="sKey">加密密钥,要求为8位</param>
/// <returns>加密成功返回加密后的字符串,失败返回源串</returns>
public static string DesEncrypt(string pToEncrypt, string sKey)
{
StringBuilder ret = new StringBuilder();
try
{
DESCryptoServiceProvider des = new DESCryptoServiceProvider();
byte[] inputByteArray = Encoding.Default.GetBytes(pToEncrypt);
des.Key = ASCIIEncoding.ASCII.GetBytes(sKey);
des.IV = iv;
MemoryStream ms = new MemoryStream();
CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(),CryptoStreamMode.Write);
cs.Write(inputByteArray, 0, inputByteArray.Length);
cs.FlushFinalBlock();
foreach (byte b in ms.ToArray())
{
ret.AppendFormat("{0:X2}", b);
}
return ret.ToString();
}
catch
{
return pToEncrypt;
}
}
/// <summary>
/// DES解密字符串
/// </summary>
/// <param name="pToDecrypt">待解密的字符串</param>
/// <param name="sKey">解密密钥,要求为8位,和加密密钥相同</param>
/// <returns>解密成功返回解密后的字符串,失败返源串</returns>
public static string DesDecrypt(string pToDecrypt, string sKey)
{
MemoryStream ms = new MemoryStream();
try
{
DESCryptoServiceProvider des = new DESCryptoServiceProvider();
byte[] inputByteArray = new byte[pToDecrypt.Length / 2];
for (int x = 0; x < pToDecrypt.Length / 2; x++)
{
int i = (Convert.ToInt32(pToDecrypt.Substring(x * 2, 2), 16));
inputByteArray[x] = (byte)i;
}
des.Key = ASCIIEncoding.ASCII.GetBytes(sKey);
des.IV = iv;
CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(), CryptoStreamMode.Write);
cs.Write(inputByteArray, 0, inputByteArray.Length);
cs.FlushFinalBlock();
return System.Text.Encoding.Default.GetString(ms.ToArray());
}
catch
{
return pToDecrypt;
}
}
使用BASE64数组进行DES加密和解密
/// <summary>
/// DES加密
/// </summary>
/// <param name="pToEncrypt"></param>
/// <param name="sKey"></param>
/// <returns></returns>
public string DESEncrypt(string pToEncrypt, string sKey,string encode="UTF-8")
{
byte[] keyBytes = Encoding.UTF8.GetBytes(sKey.Substring(0, 8));
byte[] keyIV = iv;
byte[] inputByteArray = Encoding.GetEncoding(encode).GetBytes(pToEncrypt);
DESCryptoServiceProvider provider = new DESCryptoServiceProvider();
MemoryStream mStream = new MemoryStream();
CryptoStream cStream = new CryptoStream(mStream, provider.CreateEncryptor(keyBytes, keyIV), CryptoStreamMode.Write);
cStream.Write(inputByteArray, 0, inputByteArray.Length);
cStream.FlushFinalBlock();
return Convert.ToBase64String(mStream.ToArray());
}
/// <summary>
/// DES解密
/// </summary>
/// <param name="pToDecrypt"></param>
/// <param name="sKey"></param>
/// <returns></returns>
public string DESDecrypt(string pToDecrypt, string sKey,string encode= "GB2312")
{
try
{
byte[] keyBytes = Encoding.UTF8.GetBytes(sKey);
byte[] keyIV = iv;
byte[] inputByteArray = Convert.FromBase64String(pToDecrypt);
DESCryptoServiceProvider provider = new DESCryptoServiceProvider();
MemoryStream mStream = new MemoryStream();
CryptoStream cStream = new CryptoStream(mStream, provider.CreateDecryptor(keyBytes, keyIV), CryptoStreamMode.Write);
cStream.Write(inputByteArray, 0, inputByteArray.Length);
cStream.FlushFinalBlock();
return Encoding.GetEncoding(encode).GetString(mStream.ToArray());
}
catch (Exception ex)
{
WriteLog("解密出错:" + ex.Message);
return "error";
}
}
标签:bst static mode 相同 密钥 orm gb2312 要求 str
原文地址:https://www.cnblogs.com/wanyu/p/12959215.html