Package com.wolfssl
Interface WolfSSLMissingCRLCallback
-
public interface WolfSSLMissingCRLCallback
wolfSSL Missing CRL Callback Interface. This interface specifies how applicaitons should implement the missing CRL callback class to be called by wolfSSL when CRL lookup fails.After implementing this interface, it should be passed as a parameter to either the
WolfSSLSession.setCRLCb()
method orWolfSSLContext.setCRLCb()
method, to be registered with the native wolfSSL library.- Version:
- 1.0, August 2013
- Author:
- wolfSSL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
missingCRLCallback(java.lang.String url)
Missing CRL callback method.
-
-
-
Method Detail
-
missingCRLCallback
void missingCRLCallback(java.lang.String url)
Missing CRL callback method. This method provides the callback to be used when CRL lookup failed during certificate verification.- Parameters:
url
- URL of the CRL which failed to verify during the certificate verification process.
-
-