Friday, March 6, 2020

Calculate MD5 Hashing for a File or String Using Delphi

Calculate MD5 Hashing for a File or String Using Delphi The MD5 Message-Digest Algorithm is a cryptographic hash function. MD5 is commonly used to check the integrity of files, like to make sure that a file has been unaltered. One example of this is when downloading a program online. If the software distributor gives out the MD5 hash of the file, you can produce the hash using Delphi and then compare the two values to make sure theyre the same. If theyre different, it means the file you downloaded is not the one you requested from the website, and therefore may be malicious. An MD5 hash value is 128-bits long but is typically read in its 32 digit hexadecimal  value. Finding the MD5 Hash Using Delphi Using Delphi, you can easily create a function to calculate the MD5 hash for any given file. All you need is included in the two units IdHashMessageDigest and idHash,  both of which are a part of  Indy. Heres the source code: uses IdHashMessageDigest, idHash; //returns MD5 has for a file function MD5(const fileName : string) : string; var   Ã‚  idmd5 : TIdHashMessageDigest5;   Ã‚  fs : TFileStream;   Ã‚  hash : T4x4LongWordRecord; begin   Ã‚  idmd5 : TIdHashMessageDigest5.Create;   Ã‚  fs : TFileStream.Create(fileName, fmOpenRead OR fmShareDenyWrite) ;   Ã‚  try   Ã‚  Ã‚  Ã‚  result : idmd5.AsHex(idmd5.HashValue(fs)) ;   Ã‚  finally   Ã‚  Ã‚  Ã‚  fs.Free;   Ã‚  Ã‚  Ã‚  idmd5.Free;   Ã‚  end; end; Other Ways to Generate the MD5 Checksum Apart from using Delphi are other ways you can find the MD5 checksum of a file. One method is to use Microsoft File Checksum Integrity Verifier. Its a free program that can be used only on the Windows OS. MD5 Hash Generator is a website that does something similar, but instead of producing the MD5 checksum of a file, it does so from any string of letters, symbols, or numbers that you put in the input box.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.