File MD5 checksum - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T12:55:13Zhttp://stackoverflow.com/feeds/question/447985http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/447985/file-md5-checksum1File MD5 checksumRicardo Acras2009-01-15T18:55:27Z2009-01-16T14:39:29Z
<p>In <a href="http://stackoverflow.com/questions/392657/md5-hashing-in-delphi-2009">this question</a> is mentioned the wcrypt2.</p>
<p>What I need is simply calculate the MD5 of a file. It would be perfect if I could calculate it without having to save it because it is a downloaded file in stream format.</p>
<p>I would like to have the most straightforward way to do that.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/447985/file-md5-checksum/448103#448103-1Answer by rmeador for File MD5 checksumrmeador2009-01-15T19:24:38Z2009-01-15T19:24:38Z<p>Most programming languages have libraries available for computing the MD5 of a string or byte array. In some languages, they're even part of the standard library. I'm not at all familiar with Delphi, so I don't know if it exists for Delphi, but I'd say it's likely that it does. Search for hashing and/or crypto libraries for Delphi.</p>
http://stackoverflow.com/questions/447985/file-md5-checksum/448176#4481763Answer by dummzeuch for File MD5 checksumdummzeuch2009-01-15T19:42:48Z2009-01-15T19:42:48Z<p>Indy comes with functions for calculating several hashes, MD5 is one of them. Indy is included in all versions of Delphi since at least Delphi 2006 and available as a free download for older versions.</p>
http://stackoverflow.com/questions/447985/file-md5-checksum/448177#4481771Answer by Rob Kennedy for File MD5 checksumRob Kennedy2009-01-15T19:43:18Z2009-01-15T19:43:18Z<p>As you mentioned, <a href="http://stackoverflow.com/questions/392657/md5-hashing-in-delphi-2009">the post you linked to</a> talks about <code>wcrypt2</code>, which is a library of cryptographic routines, including MD5. The post you linked to also seems to indicate that it is available for Delphi 7 since the asker includes output labeled "Delphi 7." You have tagged this question <code>delphi7</code>, so I assume that's the version you're using, too. So what's stopping you from using <code>wcrypt2</code>?</p>
<p>The question links to a copy of <em>wcrypt2.pas</em>, and the copyright dates in that file appear to indicate that the unit was available by the time Delphi 7 was released. Check your installation; you might already have it. If not, then the unit also says that it was obtained via <a href="http://www.delphi-jedi.org/" rel="nofollow">Project Jedi</a>, so you could try looking there for the unit as well.</p>
<p>The answers to your referenced question include example Delphi code and the names of units that come with Delphi for doing MD5. They come with Delphi 2009, so you should check whether they're also available for your version.</p>
http://stackoverflow.com/questions/447985/file-md5-checksum/448190#4481901Answer by eleven81 for File MD5 checksumeleven812009-01-15T19:48:15Z2009-01-15T19:48:15Z<p>Take a look at <a href="http://irsoft.de/web/Delphi-MD5" rel="nofollow">this implementation</a> of MD5SUM in Delphi. It requires a string for input, but I imagine you can easily make it work with a stream.</p>
http://stackoverflow.com/questions/447985/file-md5-checksum/448492#4484920Answer by Jim McKeeth for File MD5 checksumJim McKeeth2009-01-15T21:14:00Z2009-01-15T21:14:00Z<p><a href="http://stackoverflow.com/questions/392657/md5-hashing-in-delphi-2009#392745">MessageDigest_5</a> would work for this as well. </p>
http://stackoverflow.com/questions/447985/file-md5-checksum/450571#4505712Answer by Ricardo Acras for File MD5 checksumRicardo Acras2009-01-16T14:39:29Z2009-01-16T14:39:29Z<p>Based on @dummzeuch answere I wrote this function:</p>
<pre><code>function getMD5checksum(s: TStream): string;
var
md5: TIdHashMessageDigest5;
hash : T4x4LongWordRecord;
begin
md5 := TIdHashMessageDigest5.Create;
s.Seek(0,0);
hash := md5.HashValue(s);
result := IntToHex(Integer(hash[0]), 4) +
IntToHex(Integer(hash[1]), 4) +
IntToHex(Integer(hash[2]), 4) +
IntToHex(Integer(hash[3]), 4);
end;
</code></pre>