20152015 Ericsson AB. All Rights Reserved. The contents of this file are subject to the Erlang Public License, Version 1.1, (the "License"); you may not use this file except in compliance with the License. You should have received a copy of the Erlang Public License along with this software. If not, it can be retrieved online at http://www.erlang.org/. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. ssl_crl_cache ssl_crl_cache.xml
ssl_crl_cache 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.

delete(Entries) -> ok | {error, Reason} Entries = http_uri:uri() | {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} CRLSrc = {file, string()} | {der, [ public_key:der_encoded() ]} URI = http_uri:uri() Reason = term() Insert CRLs into the ssl applications local cache.