iText 8.0.2 API
|
An implementation of the CrlClient that fetches the CRL bytes from an URL. More...
Public Member Functions |
|
CrlClientOnline () | |
Creates a CrlClientOnline instance that will try to find a single CRL by walking through the certificate chain. More... |
|
CrlClientOnline (params String[] crls) | |
Creates a CrlClientOnline instance using one or more URLs. More... |
|
CrlClientOnline (params Uri[] crls) | |
Creates a CrlClientOnline instance using one or more URLs. More... |
|
CrlClientOnline (IX509Certificate[] chain) | |
Creates a CrlClientOnline instance using a certificate chain. More... |
|
virtual ICollection< byte[]> | GetEncoded (IX509Certificate checkCert, String url) |
Fetches the CRL bytes from an URL. More... |
|
virtual int | GetUrlsSize () |
An implementation of the CrlClient that fetches the CRL bytes from an URL.
|
inline |
Creates a CrlClientOnline instance that will try to find a single CRL by walking through the certificate chain.
|
inline |
Creates a CrlClientOnline instance using one or more URLs.
crls | the CRLs as Strings |
|
inline |
Creates a CrlClientOnline instance using one or more URLs.
crls | the CRLs as URLs |
|
inline |
Creates a CrlClientOnline instance using a certificate chain.
chain | a certificate chain |
|
inlinevirtual |
Fetches the CRL bytes from an URL.
Fetches the CRL bytes from an URL. If no url is passed as parameter, the url will be obtained from the certificate. If you want to load a CRL from a local file, subclass this method and pass an URL with the path to the local file to this method. An other option is to use the CrlClientOffline class.
Implements iText.Signatures.ICrlClient.