zoukankan      html  css  js  c++  java
  • 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加密

    代码风格就是程序员的脸面,要把生命中所有的才华、心血都倾注在code的字里行间。
  • 相关阅读:
    python中高级函数使用
    解决dev GridControl 刷新数据后,滚动条恢复原来位置
    DEV GridControl 控件属性大全
    玩转DevExpress.XtraGrid.view.gridview
    DevExpress表格GridControl控件属性设置总结
    devExpress之GridView属性设置总结(图文)
    Devexpress GridView部分常用操作总结
    SQLServer 日期函数大全
    SQL中ISNULL用法示例
    sql中的模糊查询及字段前加N的作用
  • 原文地址:https://www.cnblogs.com/bhss/p/5596013.html
Copyright © 2011-2022 走看看