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