• C#


    #region ===========================DES算法===================================
           
            private static string key = "key";
            /// <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=============================================================
    
    
    
        }
  • 相关阅读:
    11,Django组件分页器
    10,Django于ajax
    阿里云安装Nexus搭建Maven私有仓库
    maven 自动部署到tomcat
    linux 7.2 下安装maven
    小程序防止遮罩层穿透
    Linux 下安装JDK
    Linux 命令未自动提示补全
    nginx 、tomcat 集群配置、shiro Session 共享
    nginx负载均衡配置
  • 原文地址:https://www.cnblogs.com/ruishuang208/p/4788796.html
Copyright © 2020-2023  润新知