Search code examples
iphoneobjective-cblowfish

Blowfish objective-c implementation


What objective-c implementation of Blowfish would you advice to use? (Or may be I just missed some standard implementations available?)


Solution

  • Keep in mind that Objective-C is a superset of C, and so you don't need a specific Objective-C implementation. Blowfish written in C (like at this page, the first result of googling "C blowfish implementation") will do you just fine.