I\'m looking for a crypto library to use with Objective-C code. There is a C++ library which is too big for my needs. It\'s 20 mb when compiled. I think a C library would be
The usual/official way to do this is to #import , which is the CommonCrypto library. Then, you can use functions like CC_MD5(), CC_SHA(), CC_HMac(), etc.
The CommonCrypto man page has links to all the available functions.