ASP.NET中MD5和SHA1加密算法的实现
引用命名空间
using System.Web.Security;
//MD5加密后长度是32位
FormsAuthentication.HashPasswordForStoringInConfigFile("abc","md5") ;
//SH1加密后长度是40位
FormsAuthentication.HashPasswordForStoringInConfigFile("abc", "sha1") ;
引用命名空间
using System.Web.Security;
//MD5加密后长度是32位
FormsAuthentication.HashPasswordForStoringInConfigFile("abc","md5") ;
//SH1加密后长度是40位
FormsAuthentication.HashPasswordForStoringInConfigFile("abc", "sha1") ;