web-dev-qa-db-ja.com

Objective-CのMD5アルゴリズム

Objective-CでMD5を計算する方法は?

133
Biranchi

md5はiPhoneで利用でき、以下のように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テストベクトルを使用して検証されます。

219
epatel

これを行うには、組み込みの共通暗号化ライブラリを使用できます。インポートすることを忘れないでください:

#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;
}
53
Bruno Koga

パフォーマンスが重要な場合は、この最適化されたバージョンを使用できます。 stringWithFormatまたはNSMutableStringを使用したものより約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;
}
9
Pavel Alexeev

Apple実装を使用しない理由: https://developer.Apple.com/library/mac/documentation/Security/Conceptual/cryptoservices/GeneralPurposeCrypto/GeneralPurposeCrypto.html# // Apple_ref/doc/uid/TP40011172-CH9-SW1

Apple開発者向けサイトで暗号化サービスガイドを検索してください。

0
vpathak

人々がファイルストリームバージョンを求めたので。 MD5、SHA1、SHA512で動作し、ストリームを使用しているJoel Lopes Da Silvaによって作成された素敵な小さなスニペットを変更しました。 iOS用に作成されていますが、OSXでも最小限の変更で動作します(ALAssetRepresentationメソッドを削除します)。ファイルパスまたはALAssets(ALAssetRepresentationを使用)が指定されたファイルのチェックサムを作成できます。データを小さなパッケージに分割し、ファイルサイズ/アセットサイズに関係なくメモリへの影響を最小限にします。

現在、githubにあります: https://github.com/leetal/FileHash

0
Alexander W