How to calculate the MD5 in objective C ?

link|improve this question

80% accept rate
My guess is that you can fairly easily port a C routine that calculates MD5. And they're easy to find. – Artelius Feb 4 '11 at 1:59
feedback

3 Answers

up vote 62 down vote accepted

md5 is available on the iPhone and can be added as an extension for ie NSString and NSData like below.

MyExtensions.h

@interface NSString (MyExtensions)
- (NSString *) md5;
@end

@interface NSData (MyExtensions)
- (NSString*)md5;
@end

MyExtensions.m

#import "MyExtensions.h"
#import <CommonCrypto/CommonDigest.h> // Need to import for CC_MD5 access

@implementation NSString (MyExtensions)
- (NSString *) md5
{
    const char *cStr = [self UTF8String];
    unsigned char result[16];
    CC_MD5( cStr, 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 (MyExtensions)
- (NSString*)md5
{
    unsigned char result[16];
    CC_MD5( self.bytes, 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

EDIT

Added NSData md5 because I needed it myself and thought this is a good place to save this little snippet...

link|improve this answer
7  
Great little snippet - thanks (+1). – jkp Jun 9 '10 at 10:08
feedback

This has been asked before here on stackoverflow:

link|improve this answer
feedback

If anyone was looking for a solution to this for a REST API implementation, like I was for hours. You can check out my blog for the solution. I was able to produce a correctly formatted utf-8 MD5 hash all in lower case using a class method that I produced.

see it here

http://www.saobart.com/md5-has-in-objective-c/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.