asp.net中的DES加密

Posted on 2006-08-22 16:36  joinsky  阅读(825)  评论(0编辑  收藏  举报
1using System.Security.Cryptography;
2using System.Text;
3using System.IO;
#region   加密 DES
        
public string Encrypt(string pToEncrypt, string sKey)
        
{
            DESCryptoServiceProvider des 
= new DESCryptoServiceProvider();
            
//把字符串放到byte数组中
            
//原来使用的UTF8编码,我改成Unicode编码了,不行
            byte[] inputByteArray = Encoding.Default.GetBytes(pToEncrypt);

            
//建立加密对象的密钥和偏移量
            
//使得输入密码必须输入英文文本
            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);

            cs.Write(inputByteArray, 
0, inputByteArray.Length);
            cs.FlushFinalBlock();
            StringBuilder ret 
= new StringBuilder();
            
foreach(byte b in ms.ToArray())
            
{
                ret.AppendFormat(
"{0:X2}", b);
            }

            ret.ToString();
            
return ret.ToString();
        }

        
#endregion

    
        
#region 解密方法
        
//pToDecrypt为需要解密字符串,sKey为密钥
        public string Decrypt(string pToDecrypt, string sKey)
        
{
            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 * 22), 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);
            cs.Write(inputByteArray, 
0, inputByteArray.Length);
            cs.FlushFinalBlock();
            
//建立StringBuild对象,CreateDecrypt使用的是流对象,必须把解密后的文本变成流对象
            StringBuilder ret = new StringBuilder();
            
return System.Text.Encoding.Default.GetString(ms.ToArray());

        }

            
#endregion

Copyright © 2024 joinsky
Powered by .NET 8.0 on Kubernetes