Possible Duplicate:
MD5 algorithm in Objective C
I need to hash a string using the MD5 technique in cocoa. Any frameworks that are used must be able to be accessed on the iphone. please provide code if possible.
I need to hash a string using the MD5 technique in cocoa. Any frameworks that are used must be able to be accessed on the iphone. please provide code if possible. |
|||||||||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Well, first off, MD5 isn't encryption. So if you're looking for encryption, you're looking in the wrong place. But if you just want to hash something using MD5 on an iPhone, this should give you the information you need: Calculate MD5 on iPhone |
|||||
|
|
Noticed this in the Facebook Connect source code. Looks pretty solid, give it a shot.
|
|||||||
|
|
This is what I use. Credits go to Alistair McMillan.
NOTE #1: I didn't have to link to any libraries NOTE #2: I couldn't find -lcrypto in the external framework list on the iphone, and this works without -lcrypto |
|||
|
|
|
It's worth mentioning that the OpenSSL methods are deprecated on more recent versions of OS X, and the MD5 digest is conventionally lower case. Personally I'm more a fan of the unrolled style for efficiency, and I think using ObjC categories for this is a better fit. For MD5Digest.h: #include
And MD5Digest.m:
|
|||
|
|
|
I added the following to my "NSString+MyGoonk" category:
Two things:
|
|||
|
|
|
After spending too much time trying to figure this out I made a comprehensive post with correct code and how to use it. You can find the post here on my blog. http://www.saobart.com/md5-has-in-objective-c/ |
|||
|
MD5 is not encryption, it is a cryptographic hash function. It's a one-way function whose output is a 128-bit number. The fact that it is cryptographic means that it is a computationally hard problem that, given an MD5 hash output, compute a string whose MD5 is that value. So, MD5 can be used for data integrity checks, but not for encryption. |
|||||||||||||
|