Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Guys I'm storing the user password on the db as a sha1 hash.

Unfortunately I'm getting strange answers.

I'm storing the string as this:

MessageDigest cript = MessageDigest.getInstance("SHA-1");
              cript.reset();
              cript.update(userPass.getBytes("utf8"));
              this.password = new String(cript.digest());

I wanted something like this -->

aff --> "0c05aa56405c447e6678b7f3127febde5c3a9238"

rather than

aff --> �V@\D~fx����\:�8

share|improve this question

9 Answers

up vote 15 down vote accepted

This is happening because cript.digest() returns a byte array, which you're trying to print out as a character String. You want to convert it to a printable Hex String.

Easy solution: Use Apache's commons-codec library:

String password = new String(Hex.encodeHex(cript.digest()),
                             CharSet.forName("UTF-8"));
share|improve this answer
Couldn't edit your post but you're trying to call the CharSet constructor without a new for a static method. I wanted to remove the () but wouldn't let me. – stan229 Oct 24 '11 at 18:26
Fixed, thanks!! – Jason Nichols Oct 24 '11 at 21:03

Using apache common codec library:

DigestUtils.shaHex("aff")

The result is 0c05aa56405c447e6678b7f3127febde5c3a9238

That's it :)

share|improve this answer
4  
This is deprecated in commons-codec-1.7. You can now use String sha1password = DigestUtils.sha1Hex(password); – arcone Dec 13 '12 at 11:51
   
Didn't you read the deprecation comment ? :) Deprecated. Use sha1Hex(String) – altumano Dec 14 '12 at 12:07

One iteration of a hash algorithm is not secure. It's too fast. You need to perform key strengthening by iterating the hash many times.

Furthermore, you are not salting the password. This creates a vulnerability to pre-computed dictionaries, like "rainbow tables."

Instead of trying to roll your own code (or using some sketchy third-party bloatware) to do this correctly, you can use code built-in to the Java runtime. See this answer for details.

Once you have hashed the password correctly, you'll have a byte[]. An easy way to convert this to a hexadecimal String is with the BigInteger class:

String passwordHash = new BigInteger(1, cript.digest()).toString(16);

If you want to make sure that your string always has 40 characters, you may need to do some padding with zeroes on the left (you could do this with String.format().)

share|improve this answer
1  
+1 for mentioning padding, as many forgets that. – Buhake Sindi Dec 9 '10 at 17:05
2  
@Hiro2k - Of course iteration is useful. That's why all password-based cryptographic standards use it. Iterations linearly increase the time for a brute-force attack (which salt does nothing to deter). A password space that could be searched in hours if one iteration is used will take years if a few thousand iterations are used. – erickson Dec 9 '10 at 17:35

The crypt.digest() method returns a byte[]. This byte array is the correct SHA-1 sum, but crypto hashes are typically displayed to humans in hex form. Each byte in your hash will result in two hex digits.

To safely convert a byte to hex use this:

// %1$ == arg 1
// 02  == pad with 0's
// x   == convert to hex
String hex = String.format("%1$02x", byteValue);

See this link for converting char to hex: http://download.oracle.com/javase/tutorial/i18n/text/examples/UnicodeFormatter.java

Note that working with bytes in Java is very error prone. I would double check everything and test some strange cases as well.

Also you should consider using something stronger than SHA-1. http://csrc.nist.gov/groups/ST/hash/statement.html

share|improve this answer

If you use Spring its quite simple:

MessageDigestPasswordEncoder encoder = new MessageDigestPasswordEncoder("SHA-1");
String hash = encoder.encodePassword(password, "salt goes here");
share|improve this answer

digest() returns a byte array, which you're converting to a string using the default encoding. What you want to do is base64 encode it.

share|improve this answer
Err... why base64? – thejh Dec 9 '10 at 16:48
1  
Its as good an encoding scheme as any... – PaulJWilliams Dec 9 '10 at 16:57

You need to hex encode the result first. MessageDigest returns a "raw" hash, rather than a human readable one.

Edit:

@thejh provided a link to code which should work. Personally, I'd suggest using either Bouncycastle or Apache Commons Codec to do the job. Bouncycastle would be good if you want to do any other crypto-related operations.

share|improve this answer

To use UTF-8, do this:

userPass.getBytes("UTF-8");

And to get a Base64 String from the digest, you can do something like this:

this.password = new BASE64Encoder().encode(cript.digest());

Since MessageDigest.digest() returns a byte array, you can convert it to String using Apache's Hex Encoding (simpler).

E.g.

this.password = Hex.encodeHexString(cript.digest());
share|improve this answer
I think that he wants hex encoding – thejh Dec 9 '10 at 16:47
@thejh, thanks...updated as such... – Buhake Sindi Dec 9 '10 at 17:04

How about converting byte[] to base64 string?

    byte[] chkSumBytArr = digest.digest();
    BASE64Encoder encoder = new BASE64Encoder();
    String base64CheckSum = encoder.encode(chkSumBytArr);
share|improve this answer
BASE64Encoder is not standard. It may not exist in every JVM. – Gordon Apr 15 at 21:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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