• MD5加密和SHA1加密


    引入命名空间using System.Web.Security;
    public string EncryptStr(string PWD, int Format)
            {
                string str = "";
                switch (Format)
                {
                    case 0:

                        str = FormsAuthentication.HashPasswordForStoringInConfigFile(PWD, "SHA1");
                        break;
                    case 1:
                        str = FormsAuthentication.HashPasswordForStoringInConfigFile(PWD, "MD5");
                        break;
                }
                return str;
            }

    这两种加密方式无解密方法,SHA1加密要更长一些

     
  • 相关阅读:
    数据结构之c++感悟
    常见linux系统中RPM包的通用命名规则
    scripts
    http
    iscsi
    RHCE认证经典考题
    数据库
    配置空客户端邮件
    配置nfs服务
    Python版本的7大排序
  • 原文地址:https://www.cnblogs.com/paper/p/1535300.html
Copyright © 2020-2023  润新知