This is a simple implementation of the MD5 algorithm on top of the NSString class.
- Copy the NSString+MD5.h and NSString+MD5.m files into your project
- Import the NSString+MD5.h file in your controller, classes etc
- Call the generateMD5 class method on NSString
NSString *hash = [[NSString alloc] generateMD5:@"your string goes here"];
Feel free to contribute!