• CS文件密码加密类


    private string _PasswordFormat;

            public Security(string PasswordFormat)

            {

                //

                // TODO: 在此处添加构造函数逻辑

                //PasswordFormat

                this._PasswordFormat = PasswordFormat;

            }

     

            public string EncryptPassword(string PasswordString)

            {

                if (_PasswordFormat == "SHA1")

                {

                    return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(PasswordString, "SHA1");

                }

                else

                {

                    if (_PasswordFormat == "MD5")

                    {

                        return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(PasswordString, "MD5");

                    }

                    else

                    {

                        throw new Exception("Error Password Fromat define.");

                    }

                }

            }

  • 相关阅读:
    js阻止事件冒泡和标签默认行为
    Sql server不同数据类型间拼接(+)
    win7 激活相关
    查找算法
    算法基础
    requests库使用
    python urllib和urllib3包使用
    爬虫工具fiddle在firefox浏览器中的使用
    爬虫抓包工具Fiddle设置
    爬虫抓包工具Charles设置
  • 原文地址:https://www.cnblogs.com/gqrbkw/p/3473508.html
Copyright © 2020-2023  润新知