- Made sure some changed behavior is documented in CHANGES.
[openssl.git] / doc / man / dgst.pod
1 =pod
2 =head1 NAME
3
4 dgst, md5, md2, sha1, sha, mdc2, ripemd160 - message digests
5
6 =head1 SYNOPSIS
7
8 [B<dgst>]
9 [B<-md5|-md2|-sha1|-sha|mdc2|-ripemd160>]
10 [B<-c>]
11 [B<-d>]
12 [B<file...>]
13
14 [B<md5|md2|sha1|sha|mdc2|ripemd160>]
15 [B<-c>]
16 [B<-d>]
17 [B<file...>]
18
19 =head1 DESCRIPTION
20
21 The digest functions print out the message digest of a supplied file or files
22 in hexadecimal form.
23
24 =head1 OPTIONS
25
26 =over 4
27
28 =item B<-c>
29
30 print out the digest in two digit groups separated by colons.
31
32 =item B<-d>
33
34 print out BIO debugging information.
35
36 =item B<file...>
37
38 file or files to digest. If no files are specified then standard input is
39 used.
40
41 =back
42
43 =head1 NOTES
44
45 The digest of choice for all new applications is SHA1. Other digests are
46 however still widely used.
47
48 =cut