问题重现
这个 API 是当时给 Lyra 应用做激活用的,遂打开 Lyra 试了下,却发现一切正常,于是可以排除服务端的问题
放出导致错误的源码(来自 MSDN):
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public string CalculateMD5Hash( string input) { // step 1, calculate MD5 hash from input MD5 md5 = System.Security.Cryptography.MD5.Create(); byte [] inputBytes = System.Text.Encoding.ASCII.GetBytes(input); byte [] hash = md5.ComputeHash(inputBytes); // step 2, convert byte array to hex string StringBuilder sb = new StringBuilder(); for ( int i = 0; i < hash.Length; i++) { sb.Append(hash[i].ToString(“X2”)); } return sb.ToString(); } |
实质
MD5 有很多版本,其实这段代码并没有错,但是 php 的 md5 函数默认返回的是 32位小写 ,而以上这一段返回的是 16位小写
于是想办法把这个 func 改为 32位小写输出即可
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
public static String md5(String s) { MD5 md5 = new MD5CryptoServiceProvider(); byte [] bytes = System.Text.Encoding.UTF8.GetBytes(s); bytes = md5.ComputeHash(bytes); md5.Clear(); string ret = "" ; for ( int i = 0; i < bytes.Length; i++) { ret += Convert.ToString(bytes[i], 16).PadLeft(2, '0' ); } return ret.PadLeft(32, '0' ); } |
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。
原文链接:https://ifengge.me/archives/274.html?utm_source=tuicool&utm_medium=referral