To calculate a MD5 or SHA-1 checksum of a file in Linux, you can use either md5sum or sha1sum, but what about Windows especially when you copy a file from Windows to Linux and want to compare the checksum of both source and destination files. To calculate a MD5 checksum of any file, enter the following command at the Windows command prompt: certUtil -hashfile … [Read more...]
MD5 and SHA1 Checksum Using Linux
A file checksum is useful when you want to verify the content of a file are same as the content you copied or downloaded somewhere. Basically it calculate and summarise every bits of the file into a small integer value. To verify content of the file are same as the source, simply do a checksum of the source and destination file, and compare the checksum value. To calculate a … [Read more...]