关于C#字符加密方法(一般用在密码加密)
FormsAuthentication.HashPasswordForStoringInConfigFile
给定标识哈希类型的密码和字符串,该例程产生一个适合存储在配置文件中的哈希密码。
[C#]
public static string HashPasswordForStoringInConfigFile(
string password,
string passwordFormat
);
参数
password
要进行哈希运算的密码。
passwordFormat
要使用的哈希算法。选项有“sha1”或“md5”。
返回值
返回一个包含哈希密码的 String。
备注
支持的密码算法是 SHA1 和 MD5。