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