iphone md5 生成与 Ruby on Rails 生成的字符串不同的字符串
我的 iPhone 代码不会生成与 Ruby on Rails 生成的相同的十六进制字符串。
我的 Ruby 代码:
hash = Digest::MD5.digest('aaa')
hexMd5FromRuby = Digest::MD5.hexdigest( hash)
iPhone 代码:
NSString *inStr = @"aaa";
const char *cStr = [inStr UTF8String];
unsigned char result[CC_MD5_DIGEST_LENGTH];
CC_MD5( cStr, strlen(cStr), result );
NSString *hexMd5FromIphone = [NSString stringWithFormat:
@"%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
result[0], result[1], result[2], result[3], result[4], result[5], result[6],
result[7],result[8], result[9], result[10], result[11], result[12], result[13],
result[14],result[15] ];
hexMd5FromRuby 和 hexMd5FromIphone 都会生成不同的结果。
My iphone code donot generate same hex-string as generated by Ruby on Rails.
My Ruby Code:
hash = Digest::MD5.digest('aaa')
hexMd5FromRuby = Digest::MD5.hexdigest( hash)
iPhone Code:
NSString *inStr = @"aaa";
const char *cStr = [inStr UTF8String];
unsigned char result[CC_MD5_DIGEST_LENGTH];
CC_MD5( cStr, strlen(cStr), result );
NSString *hexMd5FromIphone = [NSString stringWithFormat:
@"%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
result[0], result[1], result[2], result[3], result[4], result[5], result[6],
result[7],result[8], result[9], result[10], result[11], result[12], result[13],
result[14],result[15] ];
Both hexMd5FromRuby and hexMd5FromIphone generates different results.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正确的 MD5 是
47bce5c74f589f4867dbd57e9ca9f808
。哪一个是错误的,是 Ruby 的?我不了解 Ruby,但看起来您在示例中计算了两次哈希值。这段代码对我有用:您的代码似乎获取了字符串的二进制摘要,然后从第一步计算二进制数据的十六进制 MD5 摘要。
The correct MD5 is
47bce5c74f589f4867dbd57e9ca9f808
. Which one is wrong, the Ruby one? I don’t know Ruby, but it seems like you’re computing the hash twice in your example. This code works for me:Your code seems to get the binary digest of the string and then compute the hex MD5 digest of the binary data from the first step.