目标C中的MD5algorithm

如何计算目标C中的MD5?

md5在iPhone上可用,可以添加为NSStringNSData如下所示。

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,因为我自己需要它,并认为这是一个很好的地方来保存这个小片段…

这些方法使用http://www.nsrl.nist.gov/testdata/中的NIST MD5testing向量进行validation

您可以使用内置的通用密码库来执行此操作。 记得导入:

 #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; } 

如果性能很重要,则可以使用此优化版本。 它比stringWithFormatNSMutableString快5倍。

这是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; } 

那么因为人们要求一个文件stream版本。 我已经修改了由Joel Lopes Da Silva制作的一个很好的小片段,它与MD5,SHA1和SHA512一起工作,它正在使用stream。 它是为iOSdevise的,但是在OSX上也只需要很less的修改(删除ALAssetRepresentation方法)。 它可以为给定文件path或ALAssets的文件(使用ALAssetRepresentation)进行校验和。 它将数据分块成小包,无论文件大小/资产大小如何,都会使内存影响最小。

它目前位于github这里: https : //github.com/leetal/FileHash

任何不使用Apple实现的理由: https : //developer.apple.com/library/mac/documentation/Security/Conceptual/cryptoservices/GeneralPurposeCrypto/GeneralPurposeCrypto.html#//apple_ref/doc/uid/TP40011172-CH9-SW1

在Apple开发人员网站上search“encryption服务指南”。