欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

C#中登陆账户使用的MD5加密算法

程序员文章站 2022-05-14 20:44:16
...
public static string GetMD5(string sDataIn)  
       {  
           MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();  
           byte[] bytValue, bytHash;  
           bytValue = System.Text.Encoding.UTF8.GetBytes(sDataIn);  
           bytHash = md5.ComputeHash(bytValue);  
           md5.Clear();  
           string sTemp = "";  
           for (int i = 0; i