実際、ASP.Net プログラミングでは、データを暗号化するために md5.asp を呼び出す必要はありません。 DotNet には組み込みクラスがあります: System.Web.Security.HashPasswordForStoringInConfigFile()
public string md5(string str, int code)
{
if(code==16) //16 ビット MD5 暗号化 (32 ビット暗号化の 9 ~ 25 文字を取得)
{
return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str,"MD5").ToLower().Substring(8,16);
}
if(code==32) //32ビット暗号化
{
return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str,"MD5").ToLower();
"0000000000000000000000000000000" を返します
。
}