table of contents
ssl_crl_cache(3erl) | Erlang Module Definition | ssl_crl_cache(3erl) |
NAME¶
ssl_crl_cache - CRL cache
DESCRIPTION¶
Implements an internal CRL (Certificate Revocation List) cache. In addition to implementing the ssl_crl_cache_api behaviour the following functions are available.
DATA TYPES¶
DATA TYPES¶
crl_src() =
{file, file:filename()} | {der, public_key:der_encoded()}
EXPORTS¶
delete(Entries) -> ok | {error, Reason}
Delete CRLs from the ssl applications local cache.
insert(CRLSrc) -> ok | {error, Reason}
insert(DistPointURI, CRLSrc) -> ok | {error, Reason}
Types:
DistPointURI = uri_string:uri_string()
CRLSrc = crl_src()
Reason = term()
CRLSrc = crl_src()
Reason = term()
Insert CRLs into the ssl applications local cache, with or without a distribution point reference URI
ssl 11.1.3 | Ericsson AB |