c#加密解密源码,md5、des、rsa
从网上找来的代码,顺手改改,用起来更方便。
配置文件
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Xml.Serialization; namespace Encoder
{
[Serializable]
public class Cfg
{
public string Pub = "";
public string Pri = ""; public void Creat()
{
RSAKey keys = Encoder.CreateRSAKey();
Pub = keys.PrivateKey;
Pri = keys.PublicKey;
} public void Save()
{
try
{
string fileName = "cfg.txt";//文件名称与路径
using (Stream fStream = new FileStream(fileName, FileMode.OpenOrCreate, FileAccess.ReadWrite))
{
XmlSerializer xmlFormat = new XmlSerializer(typeof(Cfg));//创建XML序列化器,需要指定对象的类型
xmlFormat.Serialize(fStream, this);
fStream.Close();
}
}
catch (Exception ex)
{
throw ex;
}
} public bool Read()
{
try
{
string fileName = "cfg.txt";//文件名称与路径
using (Stream fStream = new FileStream(fileName, FileMode.OpenOrCreate, FileAccess.ReadWrite))
{
XmlSerializer xmlFormat = new XmlSerializer(typeof(Cfg));//创建XML序列化器,需要指定对象的类型
Cfg c = (Cfg)xmlFormat.Deserialize(fStream);
this.Pub = c.Pub;
this.Pri = c.Pri;
fStream.Close();
}
}
catch (Exception ex)
{
//throw ex;
}
if (Pub != "" && Pri != "")
return true;
return false; } }
}
生成密钥
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms; namespace Encoder
{
public partial class CreateRSAKeysForm : Form
{
public CreateRSAKeysForm()
{
InitializeComponent();
} private void CreateRSAKeysForm_Load(object sender, EventArgs e)
{
Cfg c = new Cfg();
c.Read();
txtPrivateKey.Text = c.Pri;
txtPublishKey.Text = c.Pub;
} private void button1_Click(object sender, EventArgs e)
{
RSAKey keys = Encoder.CreateRSAKey();
this.txtPrivateKey.Text = keys.PrivateKey;
this.txtPublishKey.Text = keys.PublicKey;
} private void button2_Click(object sender, EventArgs e)
{
if (txtPrivateKey.Text == "")
{
MessageBox.Show("先生成密钥。");
return;
}
Cfg c = new Cfg();
c.Pri = txtPrivateKey.Text;
c.Pub = txtPublishKey.Text;
try
{
c.Save();
MessageBox.Show("保存成功。");
}
catch (Exception ex)
{
MessageBox.Show( "文件保存失败:"+ex.Message);
}
} private void button3_Click(object sender, EventArgs e)
{
Cfg c = new Cfg();
c.Read();
txtPrivateKey.Text=c.Pri;
txtPublishKey.Text=c.Pub;
}
}
}
加密解密算法,我没动哦
/**
* Author:张浩华
*/ using System;
using System.Collections.Generic;
using System.Text;
using System.Security.Cryptography;
using System.IO;
namespace Encoder
{
public class Encoder
{
#region DES 加(解)密。(对称加密) /// <summary>
/// DES 加密(对称加密)。使用密钥将明文加密成密文
/// </summary>
/// <param name="code">明文</param>
/// <param name="sKey">密钥</param>
/// <returns>密文</returns>
public static string DESEncrypt(string code, string sKey)
{
/* 创建一个DES加密服务提供者 */
DESCryptoServiceProvider des = new DESCryptoServiceProvider(); /* 将要加密的内容转换成一个Byte数组 */
byte[] inputByteArray = Encoding.Default.GetBytes(code); /* 设置密钥和初始化向量 */
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);
}
/* 释放资源 */
cs.Close();
ms.Close(); /* 返回结果 */
return ret.ToString();
} /// <summary>
/// DES 解密(对称加密)。使用密钥将密文解码成明文
/// </summary>
/// <param name="code">密文</param>
/// <param name="sKey">密钥</param>
/// <returns>明文</returns>
public static string DESDecrypt(string code, string sKey)
{
/* 创建一个DES加密服务提供者 */
DESCryptoServiceProvider des = new DESCryptoServiceProvider(); /* 将要解密的内容转换成一个Byte数组 */
byte[] inputByteArray = new byte[code.Length / 2]; for (int x = 0; x < code.Length / 2; x++)
{
int i = (Convert.ToInt32(code.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(); /* 返回结果 */
return System.Text.Encoding.Default.GetString(ms.ToArray());
} #endregion #region RSA 加(解)密。(不对称加密)
/// <summary>
/// 创建一对 RSA 密钥(公钥&私钥)。
/// </summary>
/// <returns></returns>
public static RSAKey CreateRSAKey()
{
RSAKey rsaKey = new RSAKey(); //声明一个RSAKey对象 /* 创建一个RSA加密服务提供者 */
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
rsaKey.PrivateKey = rsa.ToXmlString(true); //创建私钥
rsaKey.PublicKey = rsa.ToXmlString(false); //创建公钥 return rsaKey; //返回结果
} /// <summary>
/// RSA 加密(不对称加密)。使用公钥将明文加密成密文
/// </summary>
/// <param name="code">明文</param>
/// <param name="key">公钥</param>
/// <returns>密文</returns>
public static string RSAEncrypt(string code, string key)
{
/* 将文本转换成byte数组 */
byte[] source = Encoding.Default.GetBytes(code);
byte[] ciphertext; //密文byte数组 /* 创建一个RSA加密服务提供者 */
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
rsa.FromXmlString(key); //设置公钥
ciphertext = rsa.Encrypt(source, false); //加密,得到byte数组 /* 对字符数组进行转码 */
StringBuilder sb = new StringBuilder();
foreach (byte b in ciphertext)
{
sb.AppendFormat("{0:X2}", b);
}
return sb.ToString(); //返回结果
} /// <summary>
/// RSA 解密(不对称加密)。使用私钥将密文解密成明文
/// </summary>
/// <param name="code">密文</param>
/// <param name="key">私钥</param>
/// <returns>明文</returns>
public static string RSADecrypt(string code, string key)
{
/* 将文本转换成byte数组 */
byte[] ciphertext = new byte[code.Length / 2];
for (int x = 0; x < code.Length / 2; x++)
{
int i = (Convert.ToInt32(code.Substring(x * 2, 2), 16));
ciphertext[x] = (byte)i;
}
byte[] source; //原文byte数组 /* 创建一个RSA加密服务提供者 */
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
rsa.FromXmlString(key); //设置私钥
source = rsa.Decrypt(ciphertext, false); //解密,得到byte数组 return Encoding.Default.GetString(source); //返回结果
} #endregion #region MD5 加密(散列码 Hash 加密)
/// <summary>
/// MD5 加密(散列码 Hash 加密)
/// </summary>
/// <param name="code">明文</param>
/// <returns>密文</returns>
public static string MD5Encrypt(string code)
{
/* 获取原文内容的byte数组 */
byte[] sourceCode = Encoding.Default.GetBytes(code);
byte[] targetCode; //声明用于获取目标内容的byte数组 /* 创建一个MD5加密服务提供者 */
MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
targetCode = md5.ComputeHash(sourceCode); //执行加密 /* 对字符数组进行转码 */
StringBuilder sb = new StringBuilder();
foreach (byte b in targetCode)
{
sb.AppendFormat("{0:X2}", b);
} return sb.ToString();
}
#endregion
} /// <summary>
/// RSA 密钥。公钥&私钥
/// </summary>
public class RSAKey
{
public string PrivateKey { get; set; }
public string PublicKey { get; set; }
} }
版本说明
=====================================================
v0.2 2016年6月18日11:52:47
by 李工 qq 1222698
1、增加rsa的密钥生成,保存,读取
2、调整明文和密文的框位置。
3、增加关于,版本说明
4、有net3.5改成net2.0
5、感谢原作者的慷慨源代码
=====================================================
v0.1 原作者:张浩华
下载地址:http://www.cnblogs.com/zhhh/archive/2013/04/13/3018437.html
本版本下载:---------点这里哦----------
未实现功能:aes加密,base64加密
c#加密解密源码,md5、des、rsa的更多相关文章
- AES在线加密解密-附AES128,192,256,CBC,CFB,ECB,OFB,PCBC各种加密解密源码
一.AES在线加密解密:AES 128/192/256位CBC/CFB/ECB/OFB/PCBC在线加密解密|在线工具|在线助手|在线生成|在线制作 http://www.it399.com/aes ...
- des加密解密源码 C# key值问题
公司协议安全需求.需要对传输内容做des.md5加密. 因为是新人.刚交给我这个任务的时候有点眩晕.就开始在网上找各种des加密的内容.因为不懂以为需要把原理也搞明白,最后误了时间.把自己也搞糊涂了. ...
- php代码加密|PHP源码加密——实现方法
Encipher - PHP代码加密 | PHP源码加密下载地址:https://github.com/uniqid/encipher 该加密程序是用PHP代码写的,加密后代码无需任何附加扩展,无需安 ...
- NET实现RSA AES DES 字符串 加密解密以及SHA1 MD5加密
本文列举了 数据加密算法(Data Encryption Algorithm,DEA) 密码学中的高级加密标准(Advanced EncryptionStandard,AES)RSA公钥加密算法 ...
- 学习笔记: MD5/DES/RSA三类加密,SSL协议解析
1. 不对称可逆加密的 的2种用法 (1)保证信息不被篡改 (2) 保证信息只能被我看到 2. CA证书的基本原理 流程如下: 百度公司 向CA机构报备 持有者姓名, 有效期, 要发布的公钥 , 扩 ...
- hihttps教你在Wireshark中提取旁路https解密源码
大家好,我是hihttps,专注SSL web安全研究,今天本文就是教大家怎样从wireshark源码中,提取旁路https解密的源码,非常值得学习和商业应用. 一.旁路https解密条件 众所周知, ...
- java 加密工具类(MD5、RSA、AES等加密方式)
1.加密工具类encryption MD5加密 import org.apache.commons.codec.digest.DigestUtils; /** * MD5加密组件 * * @autho ...
- .Net(c#)加密解密之Aes和Des
.Net(c#)加密解密工具类: /// <summary> /// .Net加密解密帮助类 /// </summary> public class NetCryptoHelp ...
- openssl之aes加密(源码分析 AES_encrypt 与 AES_cbc_encrypt ,加密模式)
首先要了解AES加密是什么,以及几种加密模式的区别.之后才是编程.具体的编程案例,在下面的链接. openssl之aes加密(AES_cbc_encrypt 与 AES_encrypt 的编程案例) ...
随机推荐
- BST 解析 (二)height and deletion
前面一章介绍了BST的结构和一些简单的基本功能,例如:insert,findMin,nextLarger等等.这一节主要讲解一些BST的delete node操作还有BST的height的分析以及一些 ...
- buttongroup中content一次性加载的解决方法
buttongroup一次性加载所有内容的解决方法 如下图所示: 第一步: 设置windowcontainer的autoLoad属性为false(默认情况下autoLoad属性为true,所以会加载所 ...
- Android-DataBinding入门1
1.需要开启DataBinding功能: 在build.gradle配置: android{ dataBinding{ enabled = true } } 2.布局 布局中,根节点要以layout开 ...
- Idea Live Templates代码模板
一. 概念 创建代码模板进行快速代码编写,如sout-->System.out.println();. 如我们经常要写logger的定义:private static final Logger ...
- 自己动手实现mybatis动态sql
发现要坚持写博客真的是一件很困难的事情,各种原因都会导致顾不上博客.本来打算写自己动手实现orm,看看时间,还是先实现一个动态sql,下次有时间再补上orm完整的实现吧. 用过mybatis的人,估计 ...
- 实践作业1:测试管理工具实践 Day1
1.熟悉课程平台2.选取小组作业工具并分工3.申请博客4.提交<高级软件测试技术SPOC2017年秋学生博客地址汇总>问卷5.着手熟悉Testlink
- MongoDB入门学习(一):MongoDB的安装和管理
以前用MySQL数据库,整天都是写大堆大堆的SQL语句,要记住这些SQL关键字都要花好几天时间,写的蛋都爆了,当接触到MongoDB的时候,发现不用写SQL,瞬间觉得高大上,瞬间产生了学习使用它的冲动 ...
- 小白的Python之路 day1 Python3的bytes/str之别
原文:The bytes/str dichotomy in Python 3 Python 3最重要的新特性大概要算是对文本和二进制数据作了更为清晰的区分.文本总是Unicode,由str类型表示,二 ...
- object 覆盖 div 在IE 和Firefox 的解决方案
问题描述 公司产品需要在三维(3D)控件上显示弹框,按钮等,然而三维控件的object覆盖了div,弹框和按钮不能显示 firefox 解决方案 最外层div的背景使用不透明背景色,必须是不透明的哦 ...
- 如何用shell脚本取出服务器图片
一 ,SHELL 是什么 (1)shell是一种命令行解释器. (2)是用户和Linux内核之间沟通的桥梁,属于中间件.见下图 (3)交互流程:shell接受用户输入的指令 =>将指令传达给Li ...