如题。客户端使用的是https://github.com/blueimp/JavaScript-MD5/ 类库,
服务器端生成对应MD5,大概的思路是怎么样的?
多谢关注。
找到了方法,详细代码:
var md5 = new HMACMD5(Encoding.UTF8.GetBytes(sKey)); byte[] hash = md5.ComputeHash(Encoding.UTF8.GetBytes(toEncrypt)); var result = BitConverter.ToString(hash).Replace("-", string.Empty).ToLower();