Possible Duplicate:
Getting a File’s MD5 Checksum in Java
Is there any method to generate MD5 hash of a string in Java?
Is there any method to generate MD5 hash of a string in Java? |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
MessageDigest is your friend. Call getInstance("MD5") to get an MD5 message digest you can use. |
|||||||
|
|
The Always when working with strings and the crypto classes be sure to always specify the encoding you want the byte representation in. If you just use
If you have a lot of data take a look at the |
|||||||||||||||||||||
|
|
You might also want to look at the DigestUtils class of the apache commons codec project, which provides very convenient methods to create MD5 or SHA digests. |
|||||||||||||||||||
|
|
If you actually want the answer back as a string as opposed to a byte array, you could always do something like this:
|
|||||||||||
|
|
Here is how I use it:
where Hex is: |
|||||||||
|
|
Found this:
on the site below, I take no credit for it, but its a solution that works! For me lots of other code didnt work properly, I ended up missing 0s in the hash. This one seems to be the same as PHP has. source: http://m2tec.be/blog/2010/02/03/java-md5-hex-0093 |
|||||||||
|
|
I just downloaded commons-codec.jar and got perfect php like md5. Here is manual http://commons.apache.org/codec/api-release/org/apache/commons/codec/digest/DigestUtils.html Just import it to your project and use
and there you have it. |
|||||||||
|
|
Bombe's answer is correct, however note that unless you absolutely must use MD5 (e.g. forced on you for interoperability), a better choice is SHA1 as MD5 has weaknesses for long term use. I should add that SHA1 also has theoretical vulnerabilities, but not as severe. The current state of the art in hashing is that there are a number of candidate replacement hash functions but none have yet emerged as the standard best practice to replace SHA1. So, depending on your needs you would be well advised to make your hash algorithm configurable so it can be replaced in future. |
|||||||
|
|
Found this solution which is much cleaner in terms of getting a String representation back from an MD5 hash.
The code was extracted from here. |
|||||||||||
|
|
Another option is to use the Guava Hashing methods:
Handy if you are already using Guava (which if you're not, you probably should be). |
|||
|
|
|
MD5 is perfectly fine if you don't need the best security, and if you're doing something like checking file integrity then security is not a consideration. In such as case you might want to consider something simpler and faster, such as Adler32, which is also supported by the Java libraries. |
|||||
|
|
Another implementation: Fast MD5 Implementation in Java
|
|||
|
|
|
There is a This class contains the method |
||||
|
|
|
Take a look at the following link, the Example gets an MD5 Hash of a supplied image: MD5 Hash of an Image |
|||
|
|
|
No need to make it too complicated. DigestUtils works fine and make you comfortable while working with md5 hashes.
or
Either you can use any other encryption methods such as sha or md. |
|||
|
|
|
I do not know if this is relevant for anyone reading this, but I just had the problem that I wanted to
I wanted to do it with JRE classes only (no Apache Commons or similar). A quick web search did not show me sample code snippets doing both at the same time, only each task separately. Because this requires to read the same file twice, I figured it might be worth the while to write some code which unifies both tasks, calculating the checksum on the fly while downloading the file. This is my result (sorry if it is not perfect Java, but I guess you get the idea anyway):
|
||||
|
|
There is an article on JavaBlogging about that. Check out: http://www.javablogging.com/sha1-and-md5-checksums-in-java/ |
|||
|
|
|
My not very revealing answer:
|
|||
|
|
|
For what it's worth, I stumbled upon this because I want to synthesize GUIDs from a natural key for a program that will install COM components; I want to syhthesize so as not to manage GUID lifecycle. I'll use MD5 and then use the UUID class to get a string out of it. (http://stackoverflow.com/questions/2190890/how-can-i-generate-guid-for-a-string-values/12867439 raises this issue). In any case, java.util.UUID can get you a nice String from the MD5 bytes.
|
|||
|
|
|
I did this... Seems to work ok - I'm sure somebody will point out mistakes though...
|
||||
|
|