diff options
author | Magnus Henoch <[email protected]> | 2015-12-08 18:16:36 +0000 |
---|---|---|
committer | Magnus Henoch <[email protected]> | 2016-04-05 15:21:01 +0100 |
commit | ee2178b073e936760b405b338e473236a5df94ca (patch) | |
tree | e3891e31d17f5066efffb5ea24df31242e6712b7 /lib/public_key/doc/src | |
parent | e5776f33e6aa8ea99b14d3fd0525e9117bbe698a (diff) | |
download | otp-ee2178b073e936760b405b338e473236a5df94ca.tar.gz otp-ee2178b073e936760b405b338e473236a5df94ca.tar.bz2 otp-ee2178b073e936760b405b338e473236a5df94ca.zip |
Function for generating OpenSSL-style name hashes
OpenSSL has functions to generate short (eight hex digits) hashes of
issuers of certificates and CRLs. These hashes are used by the
"c_rehash" script to populate directories of CA certificates and CRLs,
e.g. in the Apache web server. Adding this function lets an Erlang
program find the right CRL for a given certificate in such a
directory.
Diffstat (limited to 'lib/public_key/doc/src')
-rw-r--r-- | lib/public_key/doc/src/public_key.xml | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/lib/public_key/doc/src/public_key.xml b/lib/public_key/doc/src/public_key.xml index becb5338e0..96901ed516 100644 --- a/lib/public_key/doc/src/public_key.xml +++ b/lib/public_key/doc/src/public_key.xml @@ -863,7 +863,26 @@ fun(#'DistributionPoint'{}, #'CertificateList'{}, <p>Verifies a digital signature.</p> </desc> </func> - + + <func> + <name>short_name_hash(Name) -> string()</name> + <type> + <v>Name = issuer_name()</v> + </type> + <desc> + <p>Generates a short hash of an issuer name. The hash is + returned as a string containing eight hexadecimal digits.</p> + + <p>The return value of this function is the same as the result + of the commands <c>openssl crl -hash</c> and + <c>openssl x509 -issuer_hash</c>, when passed the issuer name of + a CRL or a certificate, respectively. This hash is used by the + <c>c_rehash</c> tool to maintain a directory of symlinks to CRL + files, in order to facilitate looking up a CRL by its issuer + name.</p> + </desc> + </func> + </funcs> </erlref> |