MD5在Mac上的应用程序?
我想在我的 Mac 应用程序中使用 MD5 来加密一些字符串。
我在 Google 上搜索了它,但它不断向我提供有关如何使用 iPhone 应用程序执行此操作的示例,例如 MD5 Objective C 中的算法 或 在 cocoa 中的字符串上使用 MD5 哈希?...
I want to encrypt hash some strings with MD5 in my Mac application.
I Googled about it, but it keeps throwing me examples on how to do it with iPhone apps, like MD5 algorithm in Objective C or Using MD5 hash on a string in cocoa?...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MD5不是加密!。请参阅 http://en.wikipedia.org/wiki/Cryptographic_hash_function
您的所有示例都在事实上在 OS X 上工作。CommonCrypto 是 libSystem 的一部分。对于更完整的示例,我建议这个 CocoaWithLove 教程(和示例代码!)
http://cocoawithlove.com/2009/07/hashvalue-object-for-holding-md5-and.html
MD5 is not encryption!. Please see http://en.wikipedia.org/wiki/Cryptographic_hash_function
All of your examples do in fact work on OS X. CommonCrypto is part of libSystem. For a more complete example, I suggest this CocoaWithLove tutorial (and sample code!)
http://cocoawithlove.com/2009/07/hashvalue-object-for-holding-md5-and.html
MD5 不是加密,只是从流(可以是文本、图像、声音、数据等)计算出的唯一字符串(通常存储在哈希表中)
这是我使用的示例:
现在只需使用
md5
var 适合您的目的:)MD5 is not encryption is just a unique string (that you usually store in a hash table) calculated from a stream (that could your text, image, sound, data, etc)
Here is sample I used:
Now just use the
md5
var for your purposes :)