• 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=============================================================
    
    
    
        }
    
    }
  • 相关阅读:
    自建mail服务器之一:dns解析
    区间树
    3d tech
    3d
    平板比较
    Node。js 访问gmail
    node nightmare 网页自动化测试 sample
    node start
    中國駐香港外交部
    create a simple COM object
  • 原文地址:https://www.cnblogs.com/tianxiaziwei/p/6019233.html
Copyright © 2020-2023  润新知