I can't figure out what I'm doing wrong here. I have the following code:

byte[] digest = new byte[0];
MessageDigest md = null;
try{
    md = MessageDigest.getInstance( "SHA-512" );
}
catch( NoSuchAlgorithmException e ) {
    return digest;
}
digest = md.digest( myString.getBytes() );

Looking at the hex values of digest byte[] in the NetBeans debugger, it shows something different than the output of:

echo "myString" | openssl dgst -sha512

I'm guessing it's a character encoding issue, but doesn't the JVM and openssl use the default character set for the machine?

Any help is appreciated.

link|improve this question
Character encodings shouldn't be an issue for "myString", since that's pure ASCII. But you might want to examine the return value of myString.getBytes() just to make sure. – David Zaslavsky Jun 26 '10 at 18:17
feedback

1 Answer

up vote 5 down vote accepted

echo appends a newline at the end -

[steven@emu:~]% echo "myString" | hexdump -C
00000000  6d 79 53 74 72 69 6e 67  0a                       |myString.|

Try echo -n?

link|improve this answer
2  
That was it! You are a bash ninja! Thank you. – Tim Jun 26 '10 at 18:30
That has tripped me up before too! – orange80 Mar 8 '11 at 21:32
feedback

Your Answer

 
or
required, but never shown

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