Skip to content
Advertisement

MD5 results are different between DigestUtils and MessageDigest

I have tried to use java.security.MessageDigest or org.apache.commons.codec.digest.DigestUtils to do md5, but there comes out different results.

The sample code as below:

JavaScript

The results as below:

JavaScript

If I have give md5Digest.digest() into DigestUtils.md5Hex, the result is different from MessageDigest. But if I just do md5Hex(), it will be the same. What’s the different between this two way?

Thanks

Advertisement

Answer

When you are calling DigestUtils.md5Hex(md5Digest.digest("12345".getBytes()))), you actually calculate the MD5 of the result of the previous MD5 calculation. Thus no wonder that double-MD5 differs from single MD5.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement