如何把一字符串 用DES算法加密然后保存到数据库中,再解密

erer3858 2003-10-20 02:30:17
注册用户名 把密码加密,DES算法 
如何把一字符串 用DES算法加密然后保存到数据库中,
再解密?

急急。。。。。。。。。。。。。。。。。。。。。

在线等。。。。。。。。。。。。。。。。。。
...全文
240 8 打赏 收藏 转发到动态 举报
写回复
用AI写文章
8 条回复
切换为时间正序
请发表友善的回复…
发表回复
happywinds 2003-12-12
  • 打赏
  • 举报
回复
为什么纯粹的数字不能加密啊?出错了。
xixigongzhu 2003-10-21
  • 打赏
  • 举报
回复
最好用密码作为密钥:
加密:
static String Encrypt(String pwd) {
DESCryptoServiceProvider desc = new DESCryptoServiceProvider();//des进行加密
PasswordDeriveBytes db = new PasswordDeriveBytes(pwd, null);//产生key
byte[] key = db.GetBytes(8);
MemoryStream ms = new MemoryStream();//存储加密后的数据
CryptoStream cs = new CryptoStream(ms,desc.CreateEncryptor(key, key),CryptoStreamMode.Write);
byte[] data = Encoding.Unicode.GetBytes(pwd);//取到密码的字节流
cs.Write(data, 0, data.Length);//进行加密
cs.FlushFinalBlock();
byte[] res = ms.ToArray();//取加密后的数据
return Encoding.Unicode.GetString(res);//转换到字符串返回
}
解密:
static String Decrypt(String pwd, String data) {
DESCryptoServiceProvider desc = new DESCryptoServiceProvider();
PasswordDeriveBytes db = new PasswordDeriveBytes(pwd, null);//产生key
byte[] key = db.GetBytes(8);
MemoryStream ms = new MemoryStream();//存储解密后的数据
CryptoStream cs = new CryptoStream(ms,desc.CreateDecryptor(key, key),CryptoStreamMode.Write);
byte[] databytes = Encoding.Unicode.GetBytes(data);//取到加密后的数据的字节流
cs.Write(databytes, 0, databytes.Length);//解密数据
cs.FlushFinalBlock();
byte[] res = ms.ToArray();
return Encoding.Unicode.GetString(res);//返回解密后的数据
}

注意:将加密的数据存到数据库,解密时,先从数据库取到数据,然后用用户输入的密码作为产生key的源数据进行解密,将解密的数据与输入的密码比较,如果一样输入是对的,否则输入错误。
如果输入密码错误,解密的时候可能出异常,所以最好catch一下:
static String Decrypt(String pwd, String data) {
try {
DESCryptoServiceProvider desc = new DESCryptoServiceProvider();
PasswordDeriveBytes db = new PasswordDeriveBytes(pwd, null);//产生key
byte[] key = db.GetBytes(8);
MemoryStream ms = new MemoryStream();//存储解密后的数据
CryptoStream cs = new CryptoStream(ms,desc.CreateDecryptor(key, key),CryptoStreamMode.Write);
byte[] databytes = Encoding.Unicode.GetBytes(data);//取到加密后的数据的字节流
cs.Write(databytes, 0, databytes.Length);//解密数据
cs.FlushFinalBlock();
byte[] res = ms.ToArray();
return Encoding.Unicode.GetString(res);//返回解密后的数据
}catch(Exception e){
return null;//为null的话,证明输入错误。
}
}
CMIC 2003-10-20
  • 打赏
  • 举报
回复
Des是可逆加密的,MD5才是不可逆加密,看下面的类:
/// <summary>
/// DES可逆加密
/// </summary>
public class Des
{
public Des()
{
//
// TODO: 在此处添加构造函数逻辑
//
}

/// <summary>
/// 加密。注意:sKey输入密码的时候,必须使用英文字符,区分大小写,且字符数量是8个,不能多也不能少,否则出错。
/// </summary>
public string Encrypt(string pToEncrypt, string sKey)
{
DESCryptoServiceProvider des = new DESCryptoServiceProvider();
//把字符串放到byte数组中
//原来使用的UTF8编码,我改成Unicode编码了,不行
byte[] inputByteArray = Encoding.Default.GetBytes(pToEncrypt);
//byte[] inputByteArray=Encoding.Unicode.GetBytes(pToEncrypt);

//建立加密对象的密钥和偏移量
//原文使用ASCIIEncoding.ASCII方法的GetBytes方法
//使得输入密码必须输入英文文本
des.Key = ASCIIEncoding.ASCII.GetBytes(sKey);
des.IV = ASCIIEncoding.ASCII.GetBytes(sKey);
MemoryStream ms = new MemoryStream();
CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(),CryptoStreamMode.Write);
//Write the byte array into the crypto stream
//(It will end up in the memory stream)
cs.Write(inputByteArray, 0, inputByteArray.Length);
cs.FlushFinalBlock();
//Get the data back from the memory stream, and into a string
StringBuilder ret = new StringBuilder();
foreach(byte b in ms.ToArray())
{
//Format as hex
ret.AppendFormat("{0:X2}", b);
}
return ret.ToString();
}

/// <summary>
/// 解密。
/// </summary>
public string Decrypt(string pToDecrypt, string sKey)
{
DESCryptoServiceProvider des = new DESCryptoServiceProvider();

//Put the input string into the byte array
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 = ASCIIEncoding.ASCII.GetBytes(sKey);
MemoryStream ms = new MemoryStream();
CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(),CryptoStreamMode.Write);
//Flush the data through the crypto stream into the memory stream
cs.Write(inputByteArray, 0, inputByteArray.Length);
cs.FlushFinalBlock();

//Get the decrypted data back from the memory stream
//建立StringBuild对象,CreateDecrypt使用的是流对象,必须把解密后的文本变成流对象
StringBuilder ret = new StringBuilder();

return System.Text.Encoding.Default.GetString(ms.ToArray());
}

}
limiteee 2003-10-20
  • 打赏
  • 举报
回复
des为什么是单向的阿?哪里有资料看看?
kuangren 2003-10-20
  • 打赏
  • 举报
回复
agree ~
ajex 2003-10-20
  • 打赏
  • 举报
回复
呵呵,
zhehui 2003-10-20
  • 打赏
  • 举报
回复
DES是没有办法解密的。这是一种单向加密的。
要么你用RAS进行加密。这是可以双向。
你可以这样处理。你首先将加密之后的字符串进行比较。
而不是解密之后比较。

zhehui 2003-10-20
  • 打赏
  • 举报
回复
DES是没有办法解密的。这是一种单向加密的。
要么你用RAS进行加密。这是可以双向。
你可以这样处理。你首先将加密之后的字符串进行比较。
而不是解密之后比较。

110,535

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Web++
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧