답변:
md5는 iPhone에서 사용할 수 있으며 ie 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가 추가되어 직접 필요 하고이 작은 발췌문을 저장하기에 좋은 곳이라고 생각했기 때문에 ...
이러한 방법은 http://www.nsrl.nist.gov/testdata/ 의 NIST MD5 테스트 벡터를 사용하여 확인됩니다 .
strlen
다음과 같은 경고가 나타납니다. "암시 적 변환은 정수 정밀도를 잃습니다 : 'unsigned long'to 'CC_LONG'(일명 'unsigned int') '
내장 된 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;
}
self
실행하기 전에 @wimcNilesh 확인 ; self가 nil이면 충돌합니다.
(int)
전에 strlen
예 (int)strlen
...
성능이 중요한 경우이 최적화 된 버전을 사용할 수 있습니다. 그것은 약 5 배 빠른 속도를 가진 사람보다 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;
}
사람들이 파일 스트림 버전을 요청한 이후로. Joel Lopes Da Silva가 MD5, SHA1 및 SHA512와 함께 작동하는 멋진 작은 스 니펫을 수정했으며 스트림을 사용하고 있습니다. 그것은 iOS 용이지만 OSX에서도 최소한의 변경으로 작동합니다 (ALAssetRepresentation 메소드 제거). ALAssetRepresentation을 사용하여 파일 경로 또는 ALAssets가 지정된 파일에 대한 체크섬을 만들 수 있습니다. 파일 크기 / 자산 크기에 관계없이 메모리에 미치는 영향을 최소화하는 작은 패키지로 데이터를 청킹합니다.
현재 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 개발자 사이트에서 암호화 서비스 안내서를 검색하십시오.