从网上找来的代码,顺手改改,用起来更方便。
配置文件
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 的编程案例) ...
随机推荐
-
jquery中$(";#afui";).get(0)为什么要加get(0)呢?
jquery中$("#afui").get(0)为什么要加get(0)呢? 2015-04-13 17:46SYYZZ3 | 浏览 509 次 Jquery $("#a ...
-
AAPT: libpng error: Not a PNG file 问题解决
导入项目到Android Studio的时候,Gradle Build失败了,报的错是 FAILURE: Build failed with an exception. Execution faile ...
-
仿写自己的一个加载语言包的L函数
<?php /** * [L 加载语言的L的方法] * @param [string] $key [语言键的名称] * @return [string] $value [取到的语言值] */ f ...
-
201521123102 《Java程序设计》第4周学习总结
1. 本周学习总结 2. 书面作业 Q1.注释的应用 使用类的注释与方法的注释为前面编写的类与方法进行注释,并在Eclipse中查看.(截图) 类的注释: 方法的注释: Q2.面向对象设计(大作业1- ...
-
pycallgraph 追踪Python函数内部调用
安装 安装pycallgraph 安装依赖 使用 待测脚本 追踪脚本 追踪结果 高级篇 隐藏私密函数 控制最大追踪深度 总结 GitHub上好代码真的是太多了,名副其实的一个宝藏.但是最近自己也反思了 ...
-
MR for Baum-Welch algorithm
The Baum-Welch algorithm is commonly used for training a Hidden Markov Model because of its superior ...
-
css3实现条纹以及方格斜纹背景
CSS代码: .stripes { height: 250px; width: 375px; float: left; margin: 10px; -webkit-background-size: 5 ...
-
springMVC 使用WebApplicationContext获取ApplicationContext对象
主要用于从application中获取bean 1.applicationContext 在web.xml中使用listener配置 <context-param> <param-n ...
-
JQuery 获取页面某一元素在屏幕上的位置
获取页面某一元素的绝对X,Y坐标 var X = $('#ElementID').offset().top;//元素在当前视窗距离顶部的位置 var Y = $('#ElementID').offse ...
-
java实现高性能的数据同步
最近在做一个银行的生产数据脱敏系统,今天写代码时遇到了一个“瓶颈”,脱敏系统需要将生产环境上Infoxmix里的数据原封不动的Copy到另一台 Oracle数据库服务器上,然后对Copy后的数据作些漂 ...