.NET 实现DES加密解密处理

using System;
using System.Text;
using System.Security.Cryptography;
using System.IO; namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string a1 = EncryptDES("");
Console.WriteLine(a1);
string a2 = DecryptDES(a1);
Console.WriteLine(a2);
Console.Read();
}
//默认密钥向量
private static byte[] Keys = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };
//默认加密密码
private static string DefEncryptKey = "consmkey";
/// <summary>
/// DES加密字符串
/// </summary>
/// <param name="encryptString">待加密的字符串</param>
/// <returns>加密成功返回加密后的字符串,失败返回源串</returns>
public static string EncryptDES(string encryptString)
{
return EncryptDES(encryptString, DefEncryptKey);
} /// <summary>
/// DES解密字符串
/// </summary>
/// <param name="decryptString">待解密的字符串</param>
/// <returns>解密成功返回解密后的字符串,失败返源串</returns>
public static string DecryptDES(string decryptString)
{
return DecryptDES(decryptString, DefEncryptKey);
} /// <summary>
/// DES加密字符串
/// </summary>
/// <param name="encryptString">待加密的字符串</param>
/// <param name="encryptKey">加密密钥,要求为8位</param>
/// <returns>加密成功返回加密后的字符串,失败返回源串</returns>
public static string EncryptDES(string encryptString, string encryptKey)
{
try
{
byte[] rgbKey = Encoding.UTF8.GetBytes(encryptKey.Substring(, ));
byte[] rgbIV = Keys;
byte[] inputByteArray = Encoding.UTF8.GetBytes(encryptString);
DESCryptoServiceProvider dCSP = new DESCryptoServiceProvider();
MemoryStream mStream = new MemoryStream();
CryptoStream cStream = new CryptoStream(mStream, dCSP.CreateEncryptor(rgbKey, rgbIV), CryptoStreamMode.Write);
cStream.Write(inputByteArray, , inputByteArray.Length);
cStream.FlushFinalBlock();
return Convert.ToBase64String(mStream.ToArray());
}
catch
{
return encryptString;
}
} /// <summary>
/// DES解密字符串
/// </summary>
/// <param name="decryptString">待解密的字符串</param>
/// <param name="decryptKey">解密密钥,要求为8位,和加密密钥相同</param>
/// <returns>解密成功返回解密后的字符串,失败返源串</returns>
public static string DecryptDES(string decryptString, string decryptKey)
{
try
{
byte[] rgbKey = Encoding.UTF8.GetBytes(decryptKey);
byte[] rgbIV = Keys;
byte[] inputByteArray = Convert.FromBase64String(decryptString);
DESCryptoServiceProvider DCSP = new DESCryptoServiceProvider();
MemoryStream mStream = new MemoryStream();
CryptoStream cStream = new CryptoStream(mStream, DCSP.CreateDecryptor(rgbKey, rgbIV), CryptoStreamMode.Write);
cStream.Write(inputByteArray, , inputByteArray.Length);
cStream.FlushFinalBlock();
return Encoding.UTF8.GetString(mStream.ToArray());
}
catch
{
return decryptString;
}
}
}
}

最新文章

  1. 原始套接字SOCK_RAW
  2. A required class was missing while executing org.apache.maven.plugins:maven-war-plugin:2.1.1:war
  3. WPF快速入门系列(3)——深入解析WPF事件机制
  4. SU suphasevel命令学习
  5. [原创]java WEB学习笔记52:国际化 fmt 标签,国际化的总结
  6. 使用文件监控对象FileSystemWatcher实现数据同步
  7. &lt;转载&gt;构造函数声明为Private和Protected
  8. jsp include指令标签
  9. CodeForces 620E New Year Tree
  10. 博弈论(Game Theory) - 01 - 前传之占优战略均衡
  11. 1008 Elevator
  12. iOS 开源一个高度可定制支持各种动画效果,支持单击双击,小红点,支持自定义不规则按钮的tabbar
  13. 以实例说明微服务拆分(以SpringCloud+Gradle)
  14. windows server 2012 FTP连接报530 User 用户名 cannot log in home directory inaccessible的解决方法
  15. mysql存储过程造数据取一个基准用户的各种类型都取一条数据作为基准数据,循环插入
  16. 如何查看.net framework 版本
  17. Archive required for library “xxx” cannot be read or is not a valid zip file报错解决
  18. 织梦中在线显示pdf文件的方法
  19. 70. Climbing Stairs爬楼梯
  20. [android] WebView自定义浏览器

热门文章

  1. [转载] Thrift-client与spring集成
  2. JavaScript基本知识点整理(超实用)
  3. Liunx初学指令
  4. Akka(37): Http:客户端操作模式
  5. 把项目中的那些恶心的无处存储的大块数据都丢到FastDFS之快速搭建
  6. virtualbox下centos实现主宿互访
  7. CCF认证考试——折点计数
  8. Codeforces543BDestory Roads心得
  9. JavaScript中typeof,instanceof,hasOwnProperty,in的用法和区别
  10. HDU2546--饭卡(01背包)