D:\JAVA\ioexamples\10>java BlowfishEncryptor temp2.out password
java.security.InvalidKeyException: Wrong algorithm: Blowfish required
at com.sun.crypto.provider.BlowfishCrypt.init(Compiled Code)
at
com.sun.crypto.provider.ElectronicCodeBook.init(ElectronicCodeBook.ja
va:92)
at
com.sun.crypto.provider.BlowfishCipher.engineInit(BlowfishCipher.java
:442)
at javax.crypto.Cipher.init(Cipher.java:475)
at BlowfishEncryptor.main(Compiled Code)
D:\JAVA\ioexamples\10>java BlowfishEncryptor temp2.out password
java.security.NoSuchAlgorithmException: Algorithm Blowfish not available
at javax.crypto.JceSecurity.getImpl(Compiled Code)
at
javax.crypto.SecretKeyFactory.getInstance(SecretKeyFactory.java:105)
at BlowfishEncryptor.main(Compiled Code)
Any hints would be appreciated.
-- Elliotte