How can I hash a password in Java?
You can actually use a facility built in to the Java runtime to do this. The SunJCE in Java 6 supports PBKDF2, which is a good algorithm to use for password hashing. byte[] salt = new byte[16]; random.nextBytes(salt); KeySpec spec = new PBEKeySpec(“password”.toCharArray(), salt, 65536, 128); SecretKeyFactory f = SecretKeyFactory.getInstance(“PBKDF2WithHmacSHA1”); byte[] hash = f.generateSecret(spec).getEncoded(); Base64.Encoder … Read more