dgst.pod 5.5 KB
Newer Older
1
=pod
2

3 4
=head1 NAME

R
Rich Salz 已提交
5
dgst, sha, sha1, mdc2, ripemd160, sha224, sha256, sha384, sha512, md4, md5 - message digests
6 7 8

=head1 SYNOPSIS

U
Ulf Möller 已提交
9
B<openssl> B<dgst> 
R
Rich Salz 已提交
10
[B<-sha|-sha1|-mdc2|-ripemd160|-sha224|-sha256|-sha384|-sha512|-md4|-md5>]
11 12
[B<-c>]
[B<-d>]
13 14
[B<-hex>]
[B<-binary>]
R
Rich Salz 已提交
15
[B<-r>]
16 17
[B<-out filename>]
[B<-sign filename>]
D
Dr. Stephen Henson 已提交
18
[B<-keyform arg>]
19
[B<-passin arg>]
20 21 22
[B<-verify filename>]
[B<-prverify filename>]
[B<-signature filename>]
23
[B<-hmac key>]
R
Rich Salz 已提交
24
[B<-fips-fingerprint>]
25 26
[B<file...>]

R
Rich Salz 已提交
27 28 29
B<openssl>
[I<digest>]
[B<...>]
30 31 32

=head1 DESCRIPTION

33
The digest functions output the message digest of a supplied file or files
R
Rich Salz 已提交
34 35
in hexadecimal.  The digest functions also generate and verify digital
signatures using message digests.
36

R
Rich Salz 已提交
37 38 39 40 41 42 43
The generic name, B<dgst>, may be used with an option specifying the
algorithm to be used.
The default digest is I<sha256>.
The digest name may also be used as the command name.
To see the list of supported algorithms, use the <Ilist --digest-commands>
command.

44 45 46 47 48 49
=head1 OPTIONS

=over 4

=item B<-c>

50 51
print out the digest in two digit groups separated by colons, only relevant if
B<hex> format output is used.
52 53 54 55 56

=item B<-d>

print out BIO debugging information.

57 58 59
=item B<-hex>

digest is to be output as a hex dump. This is the default case for a "normal"
R
Rich Salz 已提交
60 61
digest as opposed to a digital signature.  See NOTES below for digital
signatures using B<-hex>.
62 63 64 65 66

=item B<-binary>

output the digest or signature in binary form.

R
Rich Salz 已提交
67 68 69 70
=item B<-r>

output the digest in the "coreutils" format used by programs like B<sha1sum>.

71 72 73 74 75 76 77 78
=item B<-out filename>

filename to output to, or standard output by default.

=item B<-sign filename>

digitally sign the digest using the private key in "filename".

D
Dr. Stephen Henson 已提交
79 80
=item B<-keyform arg>

R
Rich Salz 已提交
81 82
Specifies the key format to sign digest with. The DER, PEM, P12,
and ENGINE formats are supported.
D
Dr. Stephen Henson 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95

=item B<-engine id>

Use engine B<id> for operations (including private key storage).
This engine is not used as source for digest algorithms, unless it is
also specified in the configuration file.

=item B<-sigopt nm:v>

Pass options to the signature algorithm during sign or verify operations.
Names and values of these options are algorithm-specific.


96 97 98
=item B<-passin arg>

the private key password source. For more information about the format of B<arg>
R
Rich Salz 已提交
99
see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
100

101 102 103 104 105 106 107 108 109 110 111 112 113
=item B<-verify filename>

verify the signature using the the public key in "filename".
The output is either "Verification OK" or "Verification Failure".

=item B<-prverify filename>

verify the signature using the  the private key in "filename".

=item B<-signature filename>

the actual signature to verify.

114 115 116 117
=item B<-hmac key>

create a hashed MAC using "key".

D
Dr. Stephen Henson 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
=item B<-mac alg>

create MAC (keyed Message Authentication Code). The most popular MAC
algorithm is HMAC (hash-based MAC), but there are other MAC algorithms
which are not based on hash, for instance B<gost-mac> algorithm,
supported by B<ccgost> engine. MAC keys and other options should be set
via B<-macopt> parameter.

=item B<-macopt nm:v>

Passes options to MAC algorithm, specified by B<-mac> key.
Following options are supported by both by B<HMAC> and B<gost-mac>:

=over 8

=item B<key:string>
R
Rich Salz 已提交
134

A
Alok Menghrajani 已提交
135
Specifies MAC key as alphanumeric string (use if key contain printable
D
Dr. Stephen Henson 已提交
136 137 138 139 140 141 142 143 144 145 146
characters only). String length must conform to any restrictions of
the MAC algorithm for example exactly 32 chars for gost-mac.

=item B<hexkey:string>

Specifies MAC key in hexadecimal form (two hex digits per byte).
Key length must conform to any restrictions of the MAC algorithm
for example exactly 32 chars for gost-mac.

=back

147 148 149
=item B<-rand file(s)>

a file or files containing random data used to seed the random number
R
Rich Salz 已提交
150
generator, or an EGD socket (see L<RAND_egd(3)>).
151 152 153 154
Multiple files can be specified separated by a OS-dependent character.
The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
all others. 

R
Rich Salz 已提交
155 156 157 158 159
=item B<-fips-fingerprint>

compute HMAC using a specific key
for certain OpenSSL-FIPS operations.

160 161 162 163 164 165 166
=item B<file...>

file or files to digest. If no files are specified then standard input is
used.

=back

R
Rich Salz 已提交
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181

=head1 EXAMPLES

To create a hex-encoded message digest of a file:
 openssl dgst -md5 -hex file.txt

To sign a file using SHA-256 with binary file output:
 openssl dgst -sha256 -sign privatekey.pem -out signature.sign file.txt

To verify a signature:
 openssl dgst -sha256 -verify publickey.pem \
 -signature signature.sign \
 file.txt


182 183
=head1 NOTES

R
Rich Salz 已提交
184 185 186 187
The digest mechanisms that are available will depend on the options
used when building OpenSSL.
The B<list digest-commands> command can be used to list them.

R
Rich Salz 已提交
188 189 190
New or agile applications should use probably use SHA-256. Other digests,
particularly SHA-1 and MD5, are still widely used for interoperating
with existing formats and protocols.
191

R
Rich Salz 已提交
192 193 194 195 196
When signing a file, B<dgst> will automatically determine the algorithm
(RSA, ECC, etc) to use for signing based on the private key's ASN.1 info.
When verifying signatures, it only handles the RSA, DSA, or ECDSA signature
itself, not the related data to identify the signer and algorithm used in
formats such as x.509, CMS, and S/MIME.
197 198

A source of random numbers is required for certain signing algorithms, in
R
Rich Salz 已提交
199
particular ECDSA and DSA.
200 201 202 203

The signing and verify options should only be used if a single file is
being signed or verified.

R
Rich Salz 已提交
204 205 206 207
Hex signatures cannot be verified using B<openssl>.  Instead, use "xxd -r"
or similar program to transform the hex signature into a binary signature
prior to verification.

R
Rich Salz 已提交
208 209
=head1 HISTORY

B
Ben Kaduk 已提交
210
The default digest was changed from MD5 to SHA256 in Openssl 1.1.
211
The FIPS-related options were removed in OpenSSL 1.1
R
Rich Salz 已提交
212

213
=cut