C# 实现3Des加密 解密 - SummerA

 1 public class _3DESEncrypt
 2     {
 3 
 4         public static string Encrypt3DES(string a_strString, string a_strKey)
 5         {
 6             TripleDESCryptoServiceProvider DES = new TripleDESCryptoServiceProvider();
 7             DES.Key = ASCIIEncoding.ASCII.GetBytes(System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(a_strKey, "md5").Substring(0, 24));
 8             DES.Mode = CipherMode.ECB;
 9             ICryptoTransform DESEncrypt = DES.CreateEncryptor();
10             byte[] Buffer = ASCIIEncoding.ASCII.GetBytes(a_strString);
11             return Convert.ToBase64String(DESEncrypt.TransformFinalBlock(Buffer, 0, Buffer.Length));
12         }
13 
14         public static string Decrypt3DES(string a_strString, string a_strKey)
15         {
16             TripleDESCryptoServiceProvider DES = new TripleDESCryptoServiceProvider();
17             DES.Key = ASCIIEncoding.ASCII.GetBytes(System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(a_strKey, "md5").Substring(0, 24));
18             DES.Mode = CipherMode.ECB;
19             DES.Padding = System.Security.Cryptography.PaddingMode.PKCS7;
20             ICryptoTransform DESDecrypt = DES.CreateDecryptor();
21             string result = "";
22             try
23             {
24                 byte[] Buffer = Convert.FromBase64String(a_strString);
25 
26                 result = ASCIIEncoding.ASCII.GetString(DESDecrypt.TransformFinalBlock(Buffer, 0, Buffer.Length));
27 
28                 //MemoryStream msDecrypt = new MemoryStream(Buffer);
29                 //CryptoStream csDecrypt = new CryptoStream(msDecrypt,
30                 //       DES.CreateDecryptor(DES.Key, DES.IV),
31                 //       CryptoStreamMode.Read);
32 
33                  Create buffer to hold the decrypted data.
34                 //byte[] fromEncrypt = new byte[Buffer.Length];
35 
36                  Read the decrypted data out of the crypto stream
37                  and place it into the temporary buffer.
38                 //csDecrypt.Read(fromEncrypt, 0, fromEncrypt.Length);
39                 //result = System.Text.Encoding.Default.GetString(fromEncrypt);
40             }
41             catch (Exception e)
42             {
43             }
44             return result;
45 
46         }
47     }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值