Re: Calculate MD5 Checksum hash of a file?
Posted By:
Jay_Meyer
Posted On:
Thursday, February 28, 2002 08:15 PM
You used the same method I used for solving this problem: read in the whole file and use the MessageDigest("MD5"). I believe that I could assume that my files were pretty small, so I just read the whole file into a single String instead of the way you did it. But I don't think that will help your performance.
Re: Calculate MD5 Checksum hash of a file?
Posted By:
Shashi_Sharma
Posted On:
Thursday, February 28, 2002 09:15 AM
Use JSSE. Its pure Java and in 1.4 its included with the JRE.