table of contents
other versions
- buster 1:21.2.6+dfsg-1
- testing 1:23.2.6+dfsg-1
- unstable 1:23.2.6+dfsg-1
- experimental 1:24.0.5+dfsg-1
ssl_crl_cache(3erl) | Erlang Module Definition | ssl_crl_cache(3erl) |
NAME¶
ssl_crl_cache - CRL cacheDESCRIPTION¶
Implements an internal CRL (Certificate Revocation List) cache. In addition to implementing the ssl_crl_cache_api behaviour the following functions are available.EXPORTS¶
delete(Entries) -> ok | {error, Reason}Types:
Entries = uri_string:uri_string() | {file, string()} | {der, [
public_key:der_encoded() ]}
Reason = term()
Delete CRLs from the ssl applications local cache.
insert(CRLSrc) -> ok | {error, Reason}
insert(URI, CRLSrc) -> ok | {error, Reason}
Types:
CRLSrc = {file, string()} | {der, [ public_key:der_encoded() ]}
URI = uri_string:uri_string()
Reason = term()
Insert CRLs into the ssl applications local cache.
ssl 9.1.2 | Ericsson AB |