MD5 Encode

There's a man page for that: md5(1). Also any Google search would've returned a particular Wikipedia page.

In short, MD5 is a cryptographic hash algorithm that calculates, well, an MD5 checksum, i.e. a series of 32 hexadecimal characters (128-bit hash) that serves as a (hopefully) unique identification for a file. As the man page says, you use it like this:
% md5 filename
 
Back
Top