ssl_crl_cache (ssl v11.5.3)

Copy Markdown View Source

CRL cache

Implements an internal CRL (Certificate Revocation List) cache. In addition to implementing the ssl_crl_cache_api behaviour the following functions are available.

Summary

Types

A source to input CRLs

Functions

Delete CRLs from the ssl applications local cache.

Insert CRLs into the ssl applications local cache, with or without a distribution point reference URI

Types

crl_src()

(since OTP 18.0)
-type crl_src() :: {file, file:filename()} | {der, public_key:der_encoded()}.

A source to input CRLs

Functions

delete(Entries :: crl_src() | uri_string:uri_string()) -> Result

(since OTP 18.0)

Types

Result = ok | {error, Reason}
Reason = ssl:reason()

Delete CRLs from the ssl applications local cache.

insert(CRLSrc) ≡ insert/2

(since OTP 18.0)

insert(DistPointURI, CRLSrc) -> Result

(since OTP 18.0)

Types

DistPointURI = uri_string:uri_string()
CRLSrc = crl_src()
Result = ok | {error, Reason}
Reason = ssl:reason()

Insert CRLs into the ssl applications local cache, with or without a distribution point reference URI