Skip to content

Instantly share code, notes, and snippets.

@eiffelqiu
Created May 25, 2011 01:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eiffelqiu/990141 to your computer and use it in GitHub Desktop.
Save eiffelqiu/990141 to your computer and use it in GitHub Desktop.
NSString MD5
@interface NSString (MD5)
-(NSString *) MD5;
@end
@implementation NSString (MD5)
- (NSString *) MD5{
const char* string = [self UTF8String];
unsigned char result[16];
CC_MD5(string, strlen(string), result);
NSString* hash = [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]];
return [hash lowercaseString];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment