C# DES加密码解密类

使用方式

 

 
            string Value = "我们都是一起的一起的 一起的";

       

            string _Des = Zgke.Test.DES.DESEncoder(Value, Encoding.Default, null, null);

            string _AAA = Zgke.Test.DES.DESDecoder(_Des, Encoding.Default, null, null);


            MessageBox.Show(_Des, _AAA);

 

下面是全部的类

 

 

using System; using System.Text; using System.Security.Cryptography; namespace Zgke.Test { ///

/// DES加密 解密 /// [email protected] /// qq:116149 /// public class DES { /// /// 对字节进行DES加密 /// /// 字节数组 /// 钥匙 可以使用 System.Text.Encoding.AscII.GetBytes("ABVD") 注意必须是8位 /// 向量 如果为NULL 向量和钥匙是一个 /// 加密后的BYTE public static byte[] DESEncoder(byte[] p_Value, byte[] p_Key, byte[] p_IV) { byte[] _RgbKey = p_Key; byte[] _RgbIV = p_IV; if (_RgbKey == null || _RgbKey.Length!= 8) _RgbKey = new byte[] { 0x7A, 0x67, 0x6B, 0x65, 0x40, 0x73, 0x69, 0x6E }; if (_RgbIV == null) _RgbIV = _RgbKey; DESCryptoServiceProvider _Desc = new DESCryptoServiceProvider(); ICryptoTransform _ICrypto = _Desc.CreateEncryptor(_RgbKey, _RgbIV); return _ICrypto.TransformFinalBlock(p_Value, 0, p_Value.Length); } /// /// 对字节进行DES解密 /// /// 字节数组 /// 钥匙 可以使用 System.Text.Encoding.AscII.GetBytes("ABVD") 注意必须是8位 /// 向量 如果为NULL 向量和钥匙是一个 /// 解密后的BYTE public static byte[] DESDecoder(byte[] p_Value, byte[] p_Key, byte[] p_IV) { byte[] _RgbKey = p_Key; byte[] _RgbIV = p_IV; if (_RgbKey == null || _RgbKey.Length != 8) _RgbKey = new byte[] { 0x7A, 0x67, 0x6B, 0x65, 0x40, 0x73, 0x69, 0x6E }; if (_RgbIV == null) _RgbIV = _RgbKey; DESCryptoServiceProvider _Desc = new DESCryptoServiceProvider(); ICryptoTransform _ICrypto = _Desc.CreateDecryptor(_RgbKey, _RgbIV); return _ICrypto.TransformFinalBlock(p_Value, 0, p_Value.Length); } /// /// DES加密 /// /// 原始数据 /// 数据编码 /// 钥匙 可以使用 System.Text.Encoding.AscII.GetBytes("ABVD") 注意必须是8位 /// 向量 如果为NULL 向量和钥匙是一个 /// 加密后的字符穿 00-00-00 public static string DESEncoder(string p_TextValue, System.Text.Encoding p_TextEncoding,byte[] p_Key,byte[] p_IV) { byte[] _DataByte = p_TextEncoding.GetBytes(p_TextValue); return BitConverter.ToString(DESEncoder(_DataByte,p_Key,p_IV)); } /// /// DES解密 /// /// 经过加密数据 /// 数据编码 /// 钥匙 可以使用 System.Text.Encoding.AscII.GetBytes("ABVD") 注意必须是8位 /// 向量 如果为NULL 向量和钥匙是一个 /// 解密后的字符穿 public static string DESDecoder(string p_TextValue, System.Text.Encoding p_TextEncoding,byte[] p_Key,byte[] p_IV) { string[] _ByteText = p_TextValue.Split('-'); byte[] _DataByte =new byte[_ByteText.Length]; for (int i = 0; i != _ByteText.Length; i++) { _DataByte[i] = Convert.ToByte(_ByteText[i], 16); } return p_TextEncoding.GetString(DESDecoder(_DataByte,p_Key,p_IV)); } } }

你可能感兴趣的:(.NET,数据)