rehash.pod 3.9 KB
Newer Older
J
James Westby 已提交
1 2 3 4 5 6 7
=pod

=for comment
Original text by James Westby, contributed under the OpenSSL license.

=head1 NAME

T
Timo Teras 已提交
8
c_rehash, rehash - Create symbolic links to files named by the hash values
J
James Westby 已提交
9 10 11

=head1 SYNOPSIS

T
Timo Teras 已提交
12 13
B<openssl>
B<rehash>
14
B<[-h]>
15
B<[-help]>
16 17 18
B<[-old]>
B<[-n]>
B<[-v]>
J
James Westby 已提交
19 20
[ I<directory>...]

T
Timo Teras 已提交
21 22 23
B<c_rehash>
I<flags...>

J
James Westby 已提交
24 25
=head1 DESCRIPTION

T
Timo Teras 已提交
26
On some platforms, the OpenSSL B<rehash> command is available as
27 28
an external script called B<c_rehash>.  They are functionally equivalent,
except for minor differences noted below.
T
Timo Teras 已提交
29 30

B<rehash> scans directories and calculates a hash value of each
31
C<.pem>, C<.crt>, C<.cer>, or C<.crl>
J
James Westby 已提交
32 33
file in the specified directory list and creates symbolic links
for each file, where the name of the link is the hash value.
34
(If the platform does not support symbolic links, a copy is made.)
J
James Westby 已提交
35 36 37 38 39
This utility is useful as many programs that use OpenSSL require
directories to be set up like this in order to find certificates.

If any directories are named on the command line, then those are
processed in turn. If not, then the B<SSL_CERT_DIR> environment variable
A
Alok Menghrajani 已提交
40
is consulted; this should be a colon-separated list of directories,
J
James Westby 已提交
41 42 43 44 45
like the Unix B<PATH> variable.
If that is not set then the default directory (installation-specific
but often B</usr/local/ssl/certs>) is processed.

In order for a directory to be processed, the user must have write
46 47
permissions on that directory, otherwise an error will be generated.

J
James Westby 已提交
48 49
The links created are of the form C<HHHHHHHH.D>, where each B<H>
is a hexadecimal character and B<D> is a single decimal digit.
T
Timo Teras 已提交
50
When processing a directory, B<rehash> will first remove all links
51 52
that have a name in that syntax, even if they are being used for some
other purpose.
53
To skip the removal step, use the B<-n> flag.
J
James Westby 已提交
54 55 56 57 58 59 60 61
Hashes for CRL's look similar except the letter B<r> appears after
the period, like this: C<HHHHHHHH.rD>.

Multiple objects may have the same hash; they will be indicated by
incrementing the B<D> value. Duplicates are found by comparing the
full SHA-1 fingerprint. A warning will be displayed if a duplicate
is found.

62
A warning will also be displayed if there are files that
63 64 65 66
cannot be parsed as either a certificate or a CRL or if
more than one such object appears in the file.

=head2 Script Configuration
J
James Westby 已提交
67

68 69
The B<c_rehash> script
uses the B<openssl> program to compute the hashes and
J
James Westby 已提交
70 71 72 73 74
fingerprints. If not found in the user's B<PATH>, then set the
B<OPENSSL> environment variable to the full pathname.
Any program can be used, it will be invoked as follows for either
a certificate or CRL:

75 76
  $OPENSSL x509 -hash -fingerprint -noout -in FILENAME
  $OPENSSL crl -hash -fingerprint -noout -in FILENAME
J
James Westby 已提交
77

78
where B<FILENAME> is the filename. It must output the hash of the
J
James Westby 已提交
79 80 81
file on the first line, and the fingerprint on the second,
optionally prefixed with some text and an equals sign.

82 83 84 85
=head1 OPTIONS

=over 4

86
=item B<-help> B<-h>
87 88 89

Display a brief usage message.

90 91 92
=item B<-old>

Use old-style hashing (MD5, as opposed to SHA-1) for generating
93 94
links to be used for releases before 1.0.0.
Note that current versions will not use the old style.
95 96 97 98 99 100 101 102 103

=item B<-n>

Do not remove existing links.
This is needed when keeping new and old-style links in the same directory.

=item B<-v>

Print messages about old links removed and new links created.
T
Timo Teras 已提交
104
By default, B<rehash> only lists each directory as it is processed.
105 106 107

=back

J
James Westby 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
=head1 ENVIRONMENT

=over

=item B<OPENSSL>

The path to an executable to use to generate hashes and
fingerprints (see above).

=item B<SSL_CERT_DIR>

Colon separated list of directories to operate on.
Ignored if directories are listed on the command line.

=back

=head1 SEE ALSO

R
Rich Salz 已提交
126 127 128
L<openssl(1)>,
L<crl(1)>.
L<x509(1)>.
129

R
Rich Salz 已提交
130 131 132 133 134 135 136 137 138 139
=head1 COPYRIGHT

Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.

Licensed under the OpenSSL license (the "License").  You may not use
this file except in compliance with the License.  You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.

=cut