haseman
haseman

Reputation: 11313

Using blowfish encryption with Android?

I'm trying to use a blowfish cipher inside an Android application.
It appears that the Android platform supports blowfish (it appears to be in the source code), but when I try to get a cipher using:

Cipher.getInstance("blowfish"); 

I get a "java.security.NoSuchAlgorithmException"

Upvotes: 1

Views: 3690

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006539

Based on a quick Google search, try a capital B in "Blowfish", and see if that helps.

Upvotes: 3

Related Questions