ในความเป็นจริง ในการเขียนโปรแกรม ASP.Net ไม่จำเป็นต้องเรียก md5.asp เพื่อเข้ารหัสข้อมูล มีคลาสในตัวใน DotNet: System.Web.Security.HashPasswordForStoringInConfigFile()
สตริงสาธารณะ md5(string str, int code)
-
if(code==16) //การเข้ารหัส MD5 16 บิต (ใช้การเข้ารหัส 32 บิต 9~25 ตัวอักษร)
-
กลับ System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile (str, "MD5"). ToLower (). Substring (8,16);
}
if(code==32) //การเข้ารหัสแบบ 32 บิต
-
กลับ System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile (str, "MD5"). ToLower ();
}
ส่งคืน "0000000000000000000000000000000";
-