MD5在Mac上的应用程序?

发布于 2024-11-30 20:20:26 字数 338 浏览 1 评论 0原文

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

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

发布评论

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

评论(2

守不住的情 2024-12-07 20:20:26

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

感悟人生的甜 2024-12-07 20:20:26

MD5 不是加密,只是从流(可以是文本、图像、声音、数据等)计算出的唯一字符串(通常存储在哈希表中)

这是我使用的示例:

#import <CommonCrypto/CommonDigest.h>

const char *cStr = [someNSString UTF8String];
unsigned char resultChar[16];
CC_MD5( cStr, strlen(cStr), resultChar);
NSString *md5 = [NSString stringWithFormat:@"%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
                 resultChar[0], resultChar[1], resultChar[2], resultChar[3], 
                 resultChar[4], resultChar[5], resultChar[6], resultChar[7],
                 resultChar[8], resultChar[9], resultChar[10], resultChar[11],
                 resultChar[12], resultChar[13], resultChar[14], resultChar[15]];

现在只需使用 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:

#import <CommonCrypto/CommonDigest.h>

const char *cStr = [someNSString UTF8String];
unsigned char resultChar[16];
CC_MD5( cStr, strlen(cStr), resultChar);
NSString *md5 = [NSString stringWithFormat:@"%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
                 resultChar[0], resultChar[1], resultChar[2], resultChar[3], 
                 resultChar[4], resultChar[5], resultChar[6], resultChar[7],
                 resultChar[8], resultChar[9], resultChar[10], resultChar[11],
                 resultChar[12], resultChar[13], resultChar[14], resultChar[15]];

Now just use the md5 var for your purposes :)

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