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