X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=lib%2Fopenssl%2Fdoc%2Fapps%2Fc_rehash.pod;fp=lib%2Fopenssl%2Fdoc%2Fapps%2Fc_rehash.pod;h=0000000000000000000000000000000000000000;hb=02ed66432c92de70694700164f986190aad3cbc5;hp=c564e86315529adbd37cff9a26db914d89c7f2b1;hpb=89016837dcbf2775cd15dc8cbaba00dc6379f86e;p=cassiopeia.git diff --git a/lib/openssl/doc/apps/c_rehash.pod b/lib/openssl/doc/apps/c_rehash.pod deleted file mode 100644 index c564e86..0000000 --- a/lib/openssl/doc/apps/c_rehash.pod +++ /dev/null @@ -1,81 +0,0 @@ -=pod - -=for comment -Original text by James Westby, contributed under the OpenSSL license. - -=head1 NAME - -c_rehash - Create symbolic links to files named by the hash values - -=head1 SYNOPSIS - -B -[ I...] - -=head1 DESCRIPTION - -B scans directories and calculates a hash value of each C<.pem> -file in the specified directory list and creates symbolic links -for each file, where the name of the link is the hash value. -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 environment variable -is consulted; this shold be a colon-separated list of directories, -like the Unix B variable. -If that is not set then the default directory (installation-specific -but often B) is processed. - -In order for a directory to be processed, the user must have write -permissions on that directory, otherwise it will be skipped. -The links created are of the form C, where each B -is a hexadecimal character and B is a single decimal digit. -When processing a directory, B will first remove all links -that have a name in that syntax. If you have links in that format -used for other purposes, they will be removed. -Hashes for CRL's look similar except the letter B appears after -the period, like this: C. - -Multiple objects may have the same hash; they will be indicated by -incrementing the B value. Duplicates are found by comparing the -full SHA-1 fingerprint. A warning will be displayed if a duplicate -is found. - -A warning will also be displayed if there are B<.pem> files that -cannot be parsed as either a certificate or a CRL. - -The program uses the B program to compute the hashes and -fingerprints. If not found in the user's B, then set the -B environment variable to the full pathname. -Any program can be used, it will be invoked as follows for either -a certificate or CRL: - - $OPENSSL x509 -hash -fingerprint -noout -in FFFFFF - $OPENSSL crl -hash -fingerprint -noout -in FFFFFF - -where B is the filename. It must output the hash of the -file on the first line, and the fingerprint on the second, -optionally prefixed with some text and an equals sign. - -=head1 ENVIRONMENT - -=over - -=item B - -The path to an executable to use to generate hashes and -fingerprints (see above). - -=item B - -Colon separated list of directories to operate on. -Ignored if directories are listed on the command line. - -=back - -=head1 SEE ALSO - -L, -L. -L.