iPhone 上的头像? 如何生成十六进制 MD5 哈希值?
我想在我的 iPhone 应用程序中使用 gravatar 。 有没有办法在 iPhone 的 Objective-C 中生成十六进制 MD5 哈希值? 在 iPhone 上使用 openssl 是不行的。
I'd like to use gravatar in my iPhone application. Is there anyway to generate a hexadecimal MD5 hash in Objective-C for iPhone? Using openssl on iPhone is a no-go.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我在将其从我的应用程序中删除之前所做的:
公平地说,这不是我自己写的。 我在互联网上的某个地方找到了它,但我没有记录在哪里。
This is how I did it before I removed it from my app:
It's only fair to add that I didn't write this myself. I found it somewhere on the internet but I didn't record where.
我用于生成必要的 MD5 哈希值的代码位于 我的 github 存储库,位于CommonCrypto 子文件夹。 其中有很多类似的例程,它们将向您展示如何使用 CommonCrypto 或如何格式化十六进制字节值、base-64 等字符串。
生成字符串的可能更好的方法是:
如果您要然而,要使用上面答案中的代码,我个人建议将 %02X 更改为 %02x 并完全放弃 -lowercaseString 调用 - 也可能首先生成小写的十六进制值。
The code I used for generating the necessary MD5 hash is up on my github repository, in the CommonCrypto subfolder. There are a bunch of similar routines in there which will either show you how to use CommonCrypto or how to format strings of hex byte values, base-64, etc.
A potentially better way of generating the string would be:
If you're going to use the code in the answer above, however, I'd personally suggest changing the %02X's to %02x and forgoing the -lowercaseString call completely-- might as well generate the hex values lowercase to start with.