iphone md5 生成与 Ruby on Rails 生成的字符串不同的字符串

发布于 2024-12-18 11:24:43 字数 783 浏览 0 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋日私语 2024-12-25 11:24:43

正确的 MD5 是 47bce5c74f589f4867dbd57e9ca9f808。哪一个是错误的,是 Ruby 的?我不了解 Ruby,但看起来您在示例中计算了两次哈希值。这段代码对我有用:

require 'digest/md5'
digest = Digest::MD5.hexdigest("aaa")
puts digest # 47bce5c74f589f4867dbd57e9ca9f808

您的代码似乎获取了字符串的二进制摘要,然后从第一步计算二进制数据的十六进制 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:

require 'digest/md5'
digest = Digest::MD5.hexdigest("aaa")
puts digest # 47bce5c74f589f4867dbd57e9ca9f808

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文