首页 > TAG信息列表 > cplvfx
C#MD5加密
public static string MD5Encrytp32(string password) { using (MD5 md5 = MD5.Create()) { byte[] newBuffer = md5.ComputeHash(Encoding.UTF8.GetBytes(password)); StringBuilder sb = new StringBuilder(); for (int i = 0; i < newBuffer.Length; i++) {