OpenSSL 1.0.2f
[tomato.git] / release / src / router / openssl / doc / apps / dgst.pod
blobb27bb946b1b2e346e914e44346d4f51f4056c1e6
1 =pod
3 =head1 NAME
5 dgst, sha, sha1, mdc2, ripemd160, sha224, sha256, sha384, sha512, md2, md4, md5, dss1 - message digests
7 =head1 SYNOPSIS
9 B<openssl> B<dgst> 
10 [B<-sha|-sha1|-mdc2|-ripemd160|-sha224|-sha256|-sha384|-sha512|-md2|-md4|-md5|-dss1>]
11 [B<-c>]
12 [B<-d>]
13 [B<-hex>]
14 [B<-binary>]
15 [B<-r>]
16 [B<-non-fips-allow>]
17 [B<-out filename>]
18 [B<-sign filename>]
19 [B<-keyform arg>]
20 [B<-passin arg>]
21 [B<-verify filename>]
22 [B<-prverify filename>]
23 [B<-signature filename>]
24 [B<-hmac key>]
25 [B<-non-fips-allow>]
26 [B<-fips-fingerprint>]
27 [B<file...>]
29 B<openssl>
30 [I<digest>]
31 [B<...>]
33 =head1 DESCRIPTION
35 The digest functions output the message digest of a supplied file or files
36 in hexadecimal.  The digest functions also generate and verify digital
37 signatures using message digests.
39 =head1 OPTIONS
41 =over 4
43 =item B<-c>
45 print out the digest in two digit groups separated by colons, only relevant if
46 B<hex> format output is used.
48 =item B<-d>
50 print out BIO debugging information.
52 =item B<-hex>
54 digest is to be output as a hex dump. This is the default case for a "normal"
55 digest as opposed to a digital signature.  See NOTES below for digital
56 signatures using B<-hex>.
58 =item B<-binary>
60 output the digest or signature in binary form.
62 =item B<-r>
64 output the digest in the "coreutils" format used by programs like B<sha1sum>.
66 =item B<-non-fips-allow>
68 Allow use of non FIPS digest when in FIPS mode.  This has no effect when not in
69 FIPS mode.
71 =item B<-out filename>
73 filename to output to, or standard output by default.
75 =item B<-sign filename>
77 digitally sign the digest using the private key in "filename".
79 =item B<-keyform arg>
81 Specifies the key format to sign digest with. The DER, PEM, P12,
82 and ENGINE formats are supported.
84 =item B<-engine id>
86 Use engine B<id> for operations (including private key storage).
87 This engine is not used as source for digest algorithms, unless it is
88 also specified in the configuration file.
90 =item B<-sigopt nm:v>
92 Pass options to the signature algorithm during sign or verify operations.
93 Names and values of these options are algorithm-specific.
96 =item B<-passin arg>
98 the private key password source. For more information about the format of B<arg>
99 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
101 =item B<-verify filename>
103 verify the signature using the the public key in "filename".
104 The output is either "Verification OK" or "Verification Failure".
106 =item B<-prverify filename>
108 verify the signature using the  the private key in "filename".
110 =item B<-signature filename>
112 the actual signature to verify.
114 =item B<-hmac key>
116 create a hashed MAC using "key".
118 =item B<-mac alg>
120 create MAC (keyed Message Authentication Code). The most popular MAC
121 algorithm is HMAC (hash-based MAC), but there are other MAC algorithms
122 which are not based on hash, for instance B<gost-mac> algorithm,
123 supported by B<ccgost> engine. MAC keys and other options should be set
124 via B<-macopt> parameter.
126 =item B<-macopt nm:v>
128 Passes options to MAC algorithm, specified by B<-mac> key.
129 Following options are supported by both by B<HMAC> and B<gost-mac>:
131 =over 8
133 =item B<key:string>
135 Specifies MAC key as alphnumeric string (use if key contain printable
136 characters only). String length must conform to any restrictions of
137 the MAC algorithm for example exactly 32 chars for gost-mac.
139 =item B<hexkey:string>
141 Specifies MAC key in hexadecimal form (two hex digits per byte).
142 Key length must conform to any restrictions of the MAC algorithm
143 for example exactly 32 chars for gost-mac.
145 =back
147 =item B<-rand file(s)>
149 a file or files containing random data used to seed the random number
150 generator, or an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>).
151 Multiple files can be specified separated by a OS-dependent character.
152 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
153 all others. 
155 =item B<-non-fips-allow>
157 enable use of non-FIPS algorithms such as MD5 even in FIPS mode.
159 =item B<-fips-fingerprint>
161 compute HMAC using a specific key
162 for certain OpenSSL-FIPS operations.
164 =item B<file...>
166 file or files to digest. If no files are specified then standard input is
167 used.
169 =back
172 =head1 EXAMPLES
174 To create a hex-encoded message digest of a file:
175  openssl dgst -md5 -hex file.txt
177 To sign a file using SHA-256 with binary file output:
178  openssl dgst -sha256 -sign privatekey.pem -out signature.sign file.txt
180 To verify a signature:
181  openssl dgst -sha256 -verify publickey.pem \
182  -signature signature.sign \
183  file.txt
186 =head1 NOTES
188 The digest of choice for all new applications is SHA1. Other digests are
189 however still widely used.
191 When signing a file, B<dgst> will automatically determine the algorithm
192 (RSA, ECC, etc) to use for signing based on the private key's ASN.1 info.
193 When verifying signatures, it only handles the RSA, DSA, or ECDSA signature
194 itself, not the related data to identify the signer and algorithm used in
195 formats such as x.509, CMS, and S/MIME.
197 A source of random numbers is required for certain signing algorithms, in
198 particular ECDSA and DSA.
200 The signing and verify options should only be used if a single file is
201 being signed or verified.
203 Hex signatures cannot be verified using B<openssl>.  Instead, use "xxd -r"
204 or similar program to transform the hex signature into a binary signature
205 prior to verification.
208 =cut