I am migrating my PHP code to Google App Engine - Java. So I need an equivalent of PHP\'s crypt function in Java, since I have stored all the passwords of registered
I can recommend this: MD5Crypt implementation
MD5Crypt.crypt("youPassword"); // output: $1$zSiw0koU$i3Srfmoxx4VPePJHWqAuK/
This is one of the few implementations, which works for me.