I'm trying to hash some passwords with SHA2.

Where can I get a snippet of java code for make that?

I have seen that post but I have something missing: SHA2 password storage with Java

 Mac mac = Mac.getInstance("HmacSha256");
 SecretKeySpec secret = new SecretKeySpec(key.getBytes(), "HmacSha256");
 mac.init(secret);
 byte[] shaDigest = mac.doFinal(phrase.getBytes());
 String hash = "";
 for(byte b:shaDigest) {
     hash += String.format("%02x",b);
 }

The phrase is the String I want encode right? And what is the key (line 2)

Thanks in advance

link|improve this question
FYI: You may read some questions about password hashing. While it is good to hash passwords, it is non-trivial to do it correctly. This question has some good answers: Suggestions for library to hash passwords in Java – Adam Paynter Jul 27 '11 at 9:19
feedback

4 Answers

Do realize that simply hashing the password is not enough. If you want an overview of a common procedure employed to store passwords, please read this:

http://www.jasypt.org/howtoencryptuserpasswords.html

link|improve this answer
Of course it's not enough. You need to set up a SSL cert to get a TLS connection, because what use is the strongest, salted, lengthened hash when an eavesdropper can just get the plaintext password? Oh, and put the server in a bunker patrolled by marines, because physical access == pwnt. – bdares Jul 27 '11 at 6:34
See codahale.com/how-to-safely-store-a-password, in particular that recommends avoiding SHA1/MD5 simply because they can be cracked so quickly by GPU's. Use bcrypt. – Jeff Foster Jul 27 '11 at 9:17
@bdares: Link layer or session security? Absolutely. Bunker of marines? Maybe not. – Yann Ramin Jul 27 '11 at 15:50
feedback

First, you need to be clear what it is you want to do. You say you want to hash a password, but the code you are using is for a MAC (Message Authentication Code), specifically, HMAC.

Hashes and MACs are different things for different purposes (though HMAC does involve using a hash). You need to be sure you are using the right one for your requirement.

The reason you are being asked to supply a key is because MACs need a key. Hashes do not:

public byte[] hash(String password) throws NoSuchAlgorithmException {
    MessageDigest sha256 = MessageDigest.getInstance("SHA-256");        
    byte[] passBytes = password.getBytes();
    byte[] passHash = sha256.digest(passBytes);
    return passHash;
}
link|improve this answer
feedback

Phrase would be the password that you're trying to protect. key is the salt, a unique (and known) string appended to your password before hashing, to defeat rainbow tables. Or it should be, at least. Your code is just taking it from the password itself, which is kind of pointless. It should be a long random string that is stored together with the password digest.

link|improve this answer
feedback

you may consider using commons-codec's implementation

String hash = org.apache.commons.codec.digest.DigestUtils.sha256Hex(password +"salt");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.