1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML Strict//EN">
<html><head><title>
md5 - generate message digest
</title></head><body><h3>
<code>md5</code> - generate message digest
</h3><hr>
<p><h4>Synopsis</h4>
<p><code>md5 [ -0123456789 ] [ -h] <i>file</i></code>
<p><h4>Description</h4>
<p>This program generates the message digest of the given <i>file</i>
using the RSA Message Digest 5 (MD5) and other selected algorithms. If
<i>file</i> is not given, the program uses the standard input.
<p><h4>Options</h4>
<dl>
<dt><code>-0123456789</code>
<dd>Select algorithm from the following list
<br><code>-0</code> null
<br><code>-1</code> MD5
<br><code>-2</code> SNEFRU
<br><code>-3</code> CRC32
<br><code>-4</code> CRC16
<br><code>-5</code> MD4
<br><code>-6</code> MD2
<br><code>-7</code> SHA
<br><code>-8</code> HAVAL
<br><code>-9</code> null
<p><dt><code>-h</code>
<dd>Display the result in hex; the default is base-64
</dl>
<hr><address>David L. Mills (mills@udel.edu)</address></body></html>
|