C# DES算法加密解密作为我们开发中的安全部分我们需要明白它的使用,虽然56位密钥的DES算法已经风光不在,而且常有用Des加密的明文被破译的报道,但是了解一下昔日美国的标准加密算法总是有益的,而且目前DES算法得到了广泛的应用,在某些场合,仍然发挥着余热。
C# DES算法加密解密特点:分组比较短、密钥太短、密码生命周期短、运算速度较慢。C# DES算法加密解密工作的基本原理:其入口参数有三个:key、data、mode。key为加密解密使用的密钥;data为加密解密的数据;mode为其工作模式。
C# DES算法加密解密核心代码演示:DES是常用的对称加密解密方法
- /**//// <summary>
- /// 进行DES加密。
- /// </summary>
- /// <param name="pToEncrypt">要加密的字符串。</param>
- /// <param name="sKey">密钥,且必须为8位。</param>
- /// <returns>以Base64格式返回的加密字符串。</returns>
- public string Encrypt(string pToEncrypt, string sKey)
- {
- using (DESCryptoServiceProvider des =
- new DESCryptoServiceProvider())
- {
- byte[] inputByteArray = Encoding.UTF8.GetBytes(pToEncrypt);
- des.Key = ASCIIEncoding.ASCII.GetBytes(sKey);
- des.IV = ASCIIEncoding.ASCII.GetBytes(sKey);
- System.IO.MemoryStream ms = new System.IO.MemoryStream();
- using (CryptoStream cs = new CryptoStream(ms,
- des.CreateEncryptor(), CryptoStreamMode.Write))
- {
- cs.Write(inputByteArray, 0, inputByteArray.Length);
- cs.FlushFinalBlock();
- cs.Close();
- }
- string str = Convert.ToBase64String(ms.ToArray());
- ms.Close();
- return str;
- }
- }
- /**//// <summary>
- /// 进行C#DES解密。
- /// </summary>
- /// <param name="pToDecrypt">要解密的以Base64</param>
- /// <param name="sKey">密钥,且必须为8位。</param>
- /// <returns>已解密的字符串。</returns>
- public string Decrypt(string pToDecrypt, string sKey)
- {
- byte[] inputByteArray = Convert.FromBase64String(pToDecrypt);
- using (DESCryptoServiceProvider des =
- new DESCryptoServiceProvider())
- {
- des.Key = ASCIIEncoding.ASCII.GetBytes(sKey);
- des.IV = ASCIIEncoding.ASCII.GetBytes(sKey);
- System.IO.MemoryStream ms = new System.IO.MemoryStream();
- using (CryptoStream cs = new CryptoStream(ms,
- des.CreateDecryptor(), CryptoStreamMode.Write))
- {
- cs.Write(inputByteArray, 0, inputByteArray.Length);
- cs.FlushFinalBlock();
- cs.Close();
- }
- string str = Encoding.UTF8.GetString(ms.ToArray());
- ms.Close();
- return str;
- }
- }
C# DES算法加密解密的基本情况就向你介绍到这里,希望对你了解和学习C# DES算法加密解密有所帮助。
【编辑推荐】