Risposte:
md5 è disponibile su iPhone e può essere aggiunto come aggiunta per ie NSString
e NSData
come di seguito.
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
Aggiunto NSData md5 perché ne avevo bisogno me stesso e ho pensato che questo fosse un buon posto per salvare questo piccolo frammento ...
Questi metodi sono verificati utilizzando i vettori di test NIST MD5 in http://www.nsrl.nist.gov/testdata/
strlen
l'avvertimento: "La conversione implicita perde la precisione dei numeri interi: 'unsigned long' in 'CC_LONG' (aka 'unsigned int')"
È possibile utilizzare la libreria Common Crypto integrata per farlo. Ricorda di importare:
#import <CommonCrypto/CommonDigest.h>
e poi:
- (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
prima dell'esecuzione; se il sé è zero, si schianterà.
(int)
prima, strlen
ad esempio (int)strlen
...
Se le prestazioni sono importanti, è possibile utilizzare questa versione ottimizzata. È circa 5 volte più veloce di quelli con stringWithFormat
oNSMutableString
.
Questa è una categoria di 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;
}
Bene, dal momento che la gente ha chiesto una versione del flusso di file. Ho modificato un piccolo frammento fatto da Joel Lopes Da Silva che funziona con MD5, SHA1 e SHA512 E utilizza flussi. È realizzato per iOS ma funziona anche con modifiche minime anche su OSX (rimuovi il metodo ALAssetRepresentation). Può fare checksum per i file dati un percorso file o ALAssets (usando ALAssetRepresentation). Sta raggruppando i dati in piccoli pacchetti riducendo al minimo l'impatto sulla memoria indipendentemente dalla dimensione del file / dimensione dell'asset.
Si trova attualmente su github qui: https://github.com/leetal/FileHash
Qualsiasi motivo per non utilizzare l'implementazione Apple: https://developer.apple.com/library/mac/documentation/Security/Conceptual/cryptoservices/GeneralPurposeCrypto/GeneralPurposeCrypto.html#//apple_ref/doc/uid/TP40011172-CH9
Cerca la Guida ai servizi di crittografia sul sito degli sviluppatori Apple.