# # # http://www.cert.org/security-improvement/implementations/i002.01.html # # ftp://ftp.cerias.purdue.edu/pub/tools/unix/crypto/md5/ # # sum computes a 16-bit checksum for each given file # md5sum computes a 128-bit checksum # # # md5sum --check # # # # # http://project.honeynet.org/scans/scan15/som/som31.txt # gpg --print-md md5 honeynet.tar.gz - check against expected results # gpg --print-md md5 honeynet.tar.gz # honeynet.tar.gz: 0D FF 8F B9 FE 02 2E A8 0D 8F 1A 4E 4A E3 3E 21 # Which checks out with MD5=0dff8fb9fe022ea80d8f1a4e4ae33e21. # # This does not necessarily mean that the tar ball is authentic, one can use # tools such as "fix" to counter fit the checksum. For our purpose we will go # a head and trust the results! # # # end of file