i want to do a checksum on a file I download on my mac, how do you do this?

link|improve this question

48% accept rate
feedback

2 Answers

up vote 2 down vote accepted

In a terminal window type the md5 command followed by the file location.

md5 Downloads/myfile
link|improve this answer
For SHA-1: openssl sha1 <file>. Other algorithms also available; see [ openssl ](developer.apple.com/mac/library/documentation/Darwin/Reference/…). If you want an old school checksum see [ cksum ](developer.apple.com/mac/library/documentation/Darwin/Reference/…) (MD5 and SHA-1 are actually cryptographic hash functions, not simple checksums). – Chris Johnsen Jun 9 '10 at 9:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.