1ssl_crl_cache(3) Erlang Module Definition ssl_crl_cache(3)
2
3
4
6 ssl_crl_cache - CRL cache
7
9 Implements an internal CRL (Certificate Revocation List) cache. In
10 addition to implementing the ssl_crl_cache_api behaviour the following
11 functions are available.
12
14 DATA TYPES
15 crl_src() =
16 {file, file:filename()} | {der, public_key:der_encoded()}
17
18 uri() = uri_string:uri_string()
19
21 delete(Entries) -> ok | {error, Reason}
22
23 Types:
24
25 Entries = crl_src()]}
26 Reason = crl_reason()
27
28 Delete CRLs from the ssl applications local cache.
29
30 insert(CRLSrc) -> ok | {error, Reason}
31 insert(URI, CRLSrc) -> ok | {error, Reason}
32
33 Types:
34
35 CRLSrc = crl_src()]}
36 URI = uri()
37 Reason = term()
38
39 Insert CRLs, available to fetch on DER format from URI, into the
40 ssl applications local cache.
41
42
43
44Ericsson AB ssl 9.4 ssl_crl_cache(3)