您的位置:首页 > 编程语言 > C#

c# des 加密解密

2009-05-22 14:50 246 查看
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Cryptography;
using System.Web.Security;

namespace Test
{
/// <summary>
/// DES加密/解密类
/// </summary>
class ClassDES
{
public ClassDES()
{
}
/// <summary>
/// 密钥
/// </summary>
/// <param name="text">密钥文本</param>
/// <param name="type">类型(sha1或md5)</param>
/// <returns></returns>
public static string SetKey(string text,string type)
{
if (type == "md5")
{
return FormsAuthentication.HashPasswordForStoringInConfigFile(text, "md5").ToLower();
}
else
{
return FormsAuthentication.HashPasswordForStoringInConfigFile(text, "sha1").ToLower();
}
}

//========加密========#region ========加密========

/// <summary>
/// 加密数据
/// </summary>
/// <param name="text">要加密的文本</param>
/// <param name="key">密钥</param>
/// <returns></returns>
public static string Encrypt(string text,string sKey)
{
DESCryptoServiceProvider des = new DESCryptoServiceProvider();
byte[] inputByteArray;
inputByteArray=Encoding.Default.GetBytes(text);
des.Key = ASCIIEncoding.ASCII.GetBytes(FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));
des.IV = ASCIIEncoding.ASCII.GetBytes(FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));
System.IO.MemoryStream ms=new System.IO.MemoryStream();
CryptoStream cs=new CryptoStream(ms,des.CreateEncryptor(),CryptoStreamMode.Write);
cs.Write(inputByteArray,0,inputByteArray.Length);
cs.FlushFinalBlock();
StringBuilder ret=new StringBuilder();
foreach( byte b in ms.ToArray())
{
ret.AppendFormat("{0:X2}",b);
}
return ret.ToString();
}

//========解密========#region ========解密========

/// <summary>
/// 解密数据
/// </summary>
/// <param name="text">解密文本</param>
/// <param name="sKey">解密密钥</param>
/// <returns></returns>
public static string Decrypt(string text,string sKey)
{
DESCryptoServiceProvider des = new DESCryptoServiceProvider();
int len;
len=text.Length/2;
byte[] inputByteArray = new byte[len];
int x,i;
for(x=0;x<len;x++)
{
i = Convert.ToInt32(text.Substring(x * 2, 2), 16);
inputByteArray[x]=(byte)i;
}
des.Key = ASCIIEncoding.ASCII.GetBytes(FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));
des.IV = ASCIIEncoding.ASCII.GetBytes(FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));
System.IO.MemoryStream ms=new System.IO.MemoryStream();
CryptoStream cs=new CryptoStream(ms,des.CreateDecryptor(),CryptoStreamMode.Write);
cs.Write(inputByteArray,0,inputByteArray.Length);
cs.FlushFinalBlock();
return Encoding.Default.GetString(ms.ToArray());
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: