Submitted by Marty on Wed, 01/02/2008 - 19:22.
I'm encrypting a password on the client using
mcs.userPassword = dojox.crypto.Blowfish.encrypt(_this.logonForm_j_password.getValue(), "key")
before posting to the server. The servlet is calling
String decpassword = Blowfish.decrypt(password, "key")
I see the encrypted password being posted, but decpassword is always coming up empty.
On the server-side I'm using a jar found at http://www.aurigalogic.com/downloads/auriga-cryptolib/
Am I missing something, using it incorrectly, mis-understanding crypto?