如何在 Objective-C 中计算 MD5?
Md5可以在 iPhone 上使用,也可以作为如下 NSString和 NSData的附加功能添加。
NSString
NSData
MyAdditions.h
@interface NSString (MyAdditions) - (NSString *)md5; @end @interface NSData (MyAdditions) - (NSString*)md5; @end
MyAdditions.m
#import "MyAdditions.h" #import <CommonCrypto/CommonDigest.h> // Need to import for CC_MD5 access @implementation NSString (MyAdditions) - (NSString *)md5 { const char *cStr = [self UTF8String]; unsigned char result[CC_MD5_DIGEST_LENGTH]; CC_MD5( cStr, (int)strlen(cStr), result ); // This is the md5 call return [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] ]; } @end @implementation NSData (MyAdditions) - (NSString*)md5 { unsigned char result[CC_MD5_DIGEST_LENGTH]; CC_MD5( self.bytes, (int)self.length, result ); // This is the md5 call return [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] ]; } @end
增加了 NSData md5,因为我自己需要它,并认为这是一个很好的地方来保存这个小片段..。
中的 NIST MD5测试向量验证了这些方法 Http://www.nsrl.nist.gov/testdata/
您可以使用内置的 Common Crypto 库来实现这一点。 记得输入:
#import <CommonCrypto/CommonDigest.h>
然后:
- (NSString *) md5:(NSString *) input { const char *cStr = [input UTF8String]; unsigned char digest[CC_MD5_DIGEST_LENGTH]; CC_MD5( cStr, strlen(cStr), digest ); // This is the md5 call NSMutableString *output = [NSMutableString stringWithCapacity:CC_MD5_DIGEST_LENGTH * 2]; for(int i = 0; i < CC_MD5_DIGEST_LENGTH; i++) [output appendFormat:@"%02x", digest[i]]; return output; }
自从人们要求一个文件流版本。我已经修改了一个不错的小代码片段,由 Joel Lope Da Silva 制作,与 MD5,SHA1和 SHA512和它是使用流。它是为 iOS 设计的,但是在 OSX 上只需要做最小的修改(删除 ALAssetTable 方法)。它可以对给定文件路径或 ALAsset 的文件进行校验和(使用 ALAssetTable)。它将数据分块到小的包中,使得不管文件大小/资产大小如何,对内存的影响都是最小的。
它目前位于这里的 github: https://github.com/leetal/FileHash
如果性能很重要,可以使用此优化版本。 这是大约5倍的速度比那些与 stringWithFormat或 NSMutableString。
stringWithFormat
NSMutableString
这是 NSString 的一个类别。
- (NSString *)md5 { const char* cStr = [self UTF8String]; unsigned char result[CC_MD5_DIGEST_LENGTH]; CC_MD5(cStr, strlen(cStr), result); static const char HexEncodeChars[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' }; char *resultData = malloc(CC_MD5_DIGEST_LENGTH * 2 + 1); for (uint index = 0; index < CC_MD5_DIGEST_LENGTH; index++) { resultData[index * 2] = HexEncodeChars[(result[index] >> 4)]; resultData[index * 2 + 1] = HexEncodeChars[(result[index] % 0x10)]; } resultData[CC_MD5_DIGEST_LENGTH * 2] = 0; NSString *resultString = [NSString stringWithCString:resultData encoding:NSASCIIStringEncoding]; free(resultData); return resultString; }
任何不使用 Apple 实现的理由: https://developer.apple.com/library/mac/documentation/Security/Conceptual/cryptoservices/GeneralPurposeCrypto/GeneralPurposeCrypto.html#//apple_ref/doc/uid/TP40011172-CH9-SW1
在苹果开发者网站上搜索加密服务指南。