zoukankan      html  css  js  c++  java
  • DESEncryptor

    using System;
    using System.Collections.Generic;
    using System.Configuration;
    using System.Linq;
    using System.Security.Cryptography;
    using System.Text;
    using System.Web;
    
    namespace ShangHaiBusWebService
    {
        /// <summary>
        /// DES加密解密类 郑辰龙 2016-11-1
        /// </summary>
        public class DESEncryptor
        {
            #region ===========================DES算法===================================
            /// <summary>
            /// 加密字符串从webconfig中取
            /// </summary>
            private static string key = ConfigurationManager.AppSettings["WorkCardKey"].ToString();//工作卡数据键值;
            /// <summary>
            /// 默认加密方法
            /// </summary>
            /// <param name="text"></param>
            /// <returns></returns>
            public static string DESEncrypt(string text)
            {
                return DESEncrypt(text, key);
            }
            /// <summary>
            /// DES加密方法
            /// </summary>
            /// <param name="text">明文</param>
            /// <param name="sKey">密钥</param>
            /// <returns>加密后的密文</returns>
            public static string DESEncrypt(string text, string sKey)
            {
                DESCryptoServiceProvider des = new DESCryptoServiceProvider();
                byte[] inputByteArray;
                inputByteArray = Encoding.Default.GetBytes(text);
                des.Key = ASCIIEncoding.ASCII.GetBytes(System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));
                des.IV = ASCIIEncoding.ASCII.GetBytes(System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));
                System.IO.MemoryStream ms = new System.IO.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);
                }
                ms.Dispose();
                cs.Dispose();
                return ret.ToString();
    
            }
            /// <summary>
            /// DES解密方法,默认方法
            /// </summary>
            /// <param name="text">待加密明文</param>
            /// <returns>加密后的密文</returns>
            public static string DESDecrypt(string text)
            {
                return DESDecrypt(text, key);
            }
            /// <summary>
            /// DES解密方法
            /// </summary>
            /// <param name="text">密文</param>
            /// <param name="sKey">密钥</param>
            /// <returns>解密后的明文</returns>
            public static string DESDecrypt(string text, string sKey)
            {
                DESCryptoServiceProvider des = new DESCryptoServiceProvider();
                int len;
                len = text.Length / 2;
                byte[] inputByteArray = new byte[len];
                int x, i;
                for (x = 0; x < len; x++)
                {
                    i = Convert.ToInt32(text.Substring(x * 2, 2), 16);
                    inputByteArray[x] = (byte)i;
                }
                try
                {
                    des.Key = ASCIIEncoding.ASCII.GetBytes(System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));
                    des.IV = ASCIIEncoding.ASCII.GetBytes(System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));
                    System.IO.MemoryStream ms = new System.IO.MemoryStream();
                    CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(), CryptoStreamMode.Write);
                    cs.Write(inputByteArray, 0, inputByteArray.Length);
                    cs.FlushFinalBlock();
                    string estring = Encoding.Default.GetString(ms.ToArray());
                    ms.Dispose();
                    cs.Dispose();
                    return estring;
                }
                catch
                {
                    return "";
                }
    
            }
            #endregion
    
            #region ==============================MD5算法==================================
            /// <summary>
            /// 使用MD5算法求Hash散列
            /// </summary>
            /// <param name="text">明文</param>
            /// <returns>散列值</returns>
            public static string MD5Encrypt(string text)
            {
                return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(text, "MD5");
            }
            #endregion============================================================
    
    
            #region =============================SHA1==============================
    
            /// <summary>
            /// 使用SHA1算法求Hash散列
            /// </summary>
            /// <param name="text">明文</param>
            /// <returns>散列值</returns>
            public static string SHA1Encrypt(string text)
            {
                return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(text, "SHA1");
            }
            #endregion=============================================================
    
    
    
        }
    
    }
  • 相关阅读:
    个人作业week7——前端开发感想总结
    C#【结对编程作业】小学数学习题助手
    【个人作业3】必应词典案例分析
    【个人博客作业II】有关代码规范问题的讨论
    【个人博客作业II】代码复审结果
    【补充】第一次个人项目出现的bug
    《构建之法》阅读反馈
    【个人项目总结】C#四则运算表达式生成程序
    软件工程驻足篇章:第十七周和BugPhobia团队漫长的道别
    软件工程反思篇章:第七周和进阶团队项目感想反思
  • 原文地址:https://www.cnblogs.com/tianxiaziwei/p/6019233.html
Copyright © 2011-2022 走看看