Respostas:
O md5 está disponível no iPhone e pode ser adicionado como complemento para ie NSString
e NSData
como abaixo.
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
Adicionamos o NSData md5 porque eu mesmo precisava dele e achei que este era um bom lugar para salvar este pequeno trecho ...
Esses métodos são verificados usando os vetores de teste NIST MD5 em http://www.nsrl.nist.gov/testdata/
strlen
gerar o aviso: "A conversão implícita perde a precisão do número inteiro: 'sem assinatura por muito tempo' para 'CC_LONG' (aka 'int sem assinatura')"
Você pode usar a biblioteca Common Crypto integrada para fazer isso. Lembre-se de importar:
#import <CommonCrypto/CommonDigest.h>
e depois:
- (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
antes de executar; se o eu for nulo, ele falhará.
(int)
antes strlen
, por exemplo (int)strlen
...
Se o desempenho for importante, você pode usar esta versão otimizada. É cerca de 5 vezes mais rápido do que aqueles com stringWithFormat
ou NSMutableString
.
Esta é uma categoria do 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;
}
Bem, já que as pessoas pediram uma versão do fluxo de arquivos. Eu modifiquei um pequeno trecho bonito feito por Joel Lopes Da Silva que funciona com MD5, SHA1 e SHA512 E ele está usando fluxos. É feito para iOS, mas funciona com apenas algumas alterações mínimas no OSX (remova o método ALAssetRepresentation). Ele pode criar somas de verificação para arquivos com um caminho de arquivo ou ALAssets (usando ALAssetRepresentation). Ele agrupa dados em pequenos pacotes, tornando o impacto da memória mínimo, independentemente do tamanho do arquivo / tamanho do ativo.
Atualmente, ele está localizado no github aqui: https://github.com/leetal/FileHash
Qualquer motivo para não usar a implementação da Apple: https://developer.apple.com/library/mac/documentation/Security/Conceptual/cryptoservices/GeneralPurposeCrypto/GeneralPurposeCrypto.html#//apple_ref/doc/uid/TP40011172-CH9-SW1
Procure o Guia de Serviços Criptográficos no site do desenvolvedor da Apple.