MD5加密
程序员文章站
2024-03-19 09:12:46
...
注册时对于密码提示答案等信息应该加密后存入数据库
FormsAuthentication.HashPasswordForStoringInConfigFile方法:根据指定的密码和哈希算法生成一个适合存储在配置文件中的哈希密码。
using System.Web.Security;
FormsAuthentication.HashPasswordForStoringInConfigFile方法:根据指定的密码和哈希算法生成一个适合存储在配置文件中的哈希密码。
this.Label1.Text = FormsAuthentication.HashPasswordForStoringInConfigFile(this.TextBox1.Text ,"MD5");