4 Original text by James Westby, contributed under the OpenSSL license.
8 openssl-c_rehash, openssl-rehash,
9 c_rehash, rehash - Create symbolic links to files named by the hash values
27 On some platforms, the OpenSSL B<rehash> command is available as
28 an external script called B<c_rehash>. They are functionally equivalent,
29 except for minor differences noted below.
31 B<rehash> scans directories and calculates a hash value of each
32 C<.pem>, C<.crt>, C<.cer>, or C<.crl>
33 file in the specified directory list and creates symbolic links
34 for each file, where the name of the link is the hash value.
35 (If the platform does not support symbolic links, a copy is made.)
36 This utility is useful as many programs that use OpenSSL require
37 directories to be set up like this in order to find certificates.
39 If any directories are named on the command line, then those are
40 processed in turn. If not, then the B<SSL_CERT_DIR> environment variable
41 is consulted; this should be a colon-separated list of directories,
42 like the Unix B<PATH> variable.
43 If that is not set then the default directory (installation-specific
44 but often B</usr/local/ssl/certs>) is processed.
46 In order for a directory to be processed, the user must have write
47 permissions on that directory, otherwise an error will be generated.
49 The links created are of the form C<HHHHHHHH.D>, where each B<H>
50 is a hexadecimal character and B<D> is a single decimal digit.
51 When processing a directory, B<rehash> will first remove all links
52 that have a name in that syntax, even if they are being used for some
54 To skip the removal step, use the B<-n> flag.
55 Hashes for CRL's look similar except the letter B<r> appears after
56 the period, like this: C<HHHHHHHH.rD>.
58 Multiple objects may have the same hash; they will be indicated by
59 incrementing the B<D> value. Duplicates are found by comparing the
60 full SHA-1 fingerprint. A warning will be displayed if a duplicate
63 A warning will also be displayed if there are files that
64 cannot be parsed as either a certificate or a CRL or if
65 more than one such object appears in the file.
67 =head2 Script Configuration
69 The B<c_rehash> script
70 uses the B<openssl> program to compute the hashes and
71 fingerprints. If not found in the user's B<PATH>, then set the
72 B<OPENSSL> environment variable to the full pathname.
73 Any program can be used, it will be invoked as follows for either
76 $OPENSSL x509 -hash -fingerprint -noout -in FILENAME
77 $OPENSSL crl -hash -fingerprint -noout -in FILENAME
79 where B<FILENAME> is the filename. It must output the hash of the
80 file on the first line, and the fingerprint on the second,
81 optionally prefixed with some text and an equals sign.
89 Display a brief usage message.
93 Use old-style hashing (MD5, as opposed to SHA-1) for generating
94 links to be used for releases before 1.0.0.
95 Note that current versions will not use the old style.
99 Do not remove existing links.
100 This is needed when keeping new and old-style links in the same directory.
104 Generate links for both old-style (MD5) and new-style (SHA1) hashing.
105 This allows releases before 1.0.0 to use these links along-side newer
110 Print messages about old links removed and new links created.
111 By default, B<rehash> only lists each directory as it is processed.
121 The path to an executable to use to generate hashes and
122 fingerprints (see above).
124 =item B<SSL_CERT_DIR>
126 Colon separated list of directories to operate on.
127 Ignored if directories are listed on the command line.
139 Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.
141 Licensed under the OpenSSL license (the "License"). You may not use
142 this file except in compliance with the License. You can obtain a copy
143 in the file LICENSE in the source distribution or at
144 L<https://www.openssl.org/source/license.html>.