MD5Helper辅助类

DES加密和解密

 

复制代码
    public class MD5Helper
    {

        ///DES加密    
        ///sKey 
        public  string MD5Encrypt(string pToEncrypt, string sKey)
        {
            DESCryptoServiceProvider des = new DESCryptoServiceProvider();
            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();
        }
        ///DES解密    
        public  string MD5Decrypt(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 * 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);
            cs.Write(inputByteArray, 0, inputByteArray.Length);
            cs.FlushFinalBlock();
            StringBuilder ret = new StringBuilder();

            return System.Text.Encoding.Default.GetString(ms.ToArray());
        }
        public  string MD5Encrypt(string pToEncrypt, string sKey, out string msg)
        {
            DESCryptoServiceProvider des = new DESCryptoServiceProvider();
            StringBuilder ret = new StringBuilder();
            try
            {
                byte[] inputByteArray = Encoding.Default.GetBytes(pToEncrypt);
                msg = "SUCC:";
                int length = sKey.Length;
                if (length < 8)
                { msg = "ERR:密钥长度不能小于8"; return ""; }
                int _dif = length - 8;
                int _sub_Index = _dif / 2 + _dif % 2;
                _sub_Index = _sub_Index <= 0 ? 0 : _sub_Index;
                sKey = sKey.Substring(_sub_Index, 8);
                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();

                foreach (byte b in ms.ToArray())
                {
                    ret.AppendFormat("{0:X2}", b);
                }
            }
            catch (Exception ex)
            {
                msg = "ERR:" + ex.Message;
            }
            return ret.ToString();
        }
        ///DES解密    
        public  string MD5Decrypt(string pToDecrypt, string sKey, out string msg)
        {
            DESCryptoServiceProvider des = new DESCryptoServiceProvider();
            string _value = "";

            try
            {
                msg = "SUCC:";
                int length = sKey.Length;
                if (length < 8)
                { msg = "ERR:密钥长度不能小于8"; return ""; }
                int _dif = length - 8;
                int _sub_Index = _dif / 2 + _dif % 2;
                _sub_Index = _sub_Index <= 0 ? 0 : _sub_Index;
                sKey = sKey.Substring(_sub_Index, 8);
                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);
                cs.Write(inputByteArray, 0, inputByteArray.Length);
                cs.FlushFinalBlock();
                StringBuilder ret = new StringBuilder();
                _value = Encoding.Default.GetString(ms.ToArray());
            }
            catch (Exception ex)
            {
                msg = "ERR:" + ex.Message;
            }

            return _value;
        }
    }
复制代码

 调用方法

 MD5Helper md5 = new MD5Helper();

 string key = ConfigurationManager.AppSettings["MD5Encrypt"];
 loginPassword = md5.MD5Encrypt(loginPassword, key);

 

posted @   韩梦芫  阅读(2357)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
点击右上角即可分享
微信分享提示