.net中的md5加密

很简单了,看下面: 

string Pwd = this.TxtUserPwd.Text.Trim().Replace("'","");

string UserPwd = FormsAuthentication.HashPasswordForStoringInConfigFile(Pwd,"md5");

原文地址:https://www.cnblogs.com/wbcms/p/1046020.html