Reputation: 4630
Is there a version of Bouncy Castle that be used in the development of iOS applications ?
Any feedback would be highly appreciated. Googling did not answer the question.
Upvotes: 5
Views: 9120
Reputation: 5987
Bouncy Castle is for C# and Java only...
For Objective C you can use following though...
You can visit http://developer.apple.com/mac/library/documentation/Darwin/Reference/ManPages/man3/CCCryptor.3cc.html#//apple_ref/doc/man/3cc/CCCryptor for more details as there are in-build functions to do this...
Upvotes: 6
Reputation: 14851
Nope, 90% of the time the encryption goes through Apple's own CommonCrypto library. Luckily, there are a few very easy to use wrappers for the CommonCrypto, check out RNCryptor by Rob Napier.
Upvotes: 4