Package | Description |
---|---|
org.jsslutils.sslcontext |
Modifier and Type | Method and Description |
---|---|
void |
PKIXSSLContextFactory.addCrl(CRL crl)
Adds a CRL to the collection used by getCrlCollection() (and thus the
trust manager by default).
|
void |
PKIXSSLContextFactory.addCrl(InputStream crlInputStream)
Adds a CRL from an InputStream to the collection used by
getCrlCollection() (and thus the trust manager by default).
|
void |
PKIXSSLContextFactory.addCrl(String crlUrl)
Adds a CRL from a URL to the collection used by getCrlCollection() (and
thus the trust manager by default).
|
void |
PKIXSSLContextFactory.addCrl(String crlUrl,
long reloadInterval)
Adds a CRL from a URL to the collection used by getCrlCollection() (and
thus the trust manager by default); this CRL will be reloaded
periodically.
|
void |
PKIXSSLContextFactory.addCrlCollection(Collection<? extends CRL> crlCollection)
Adds CRLs to the collection used by getCrlCollection() (and thus the
trust manager by default).
|
Callable<X509CRL> |
PKIXSSLContextFactory.addReloadableCrl(String crlUrl)
Adds a CRL from a URL to the collection used by getCrlCollection() (and
thus the trust manager by default).
|
SSLContext |
DefaultSSLContextFactory.buildSSLContext()
Creates a new SSLContext with the context protocol set with
setContextProtocol(String).
|
SSLContext |
SSLContextFactory.buildSSLContext() |
SSLContext |
DefaultSSLContextFactory.buildSSLContext(String contextProtocol)
Creates a new SSLContext initialised with getKeyManagers(),
getTrustManagers() and getSecureRandom().
|
void |
DefaultSSLContextFactory.configure(Properties properties)
Configures some this factory based on values in the properties.
|
void |
X509SSLContextFactory.configure(Properties properties)
Configures some this factory based on values in the properties.
|
void |
SSLContextFactory.configure(Properties properties) |
protected CertStore |
PKIXSSLContextFactory.getCertStore()
Returns the CertStore added to the PKIXParameters in getPKIXParameters().
|
Collection<? extends CRL> |
PKIXSSLContextFactory.getCrlCollection()
Returns the Collection of X509CRLs used to initialise the
CollectionCertStoreParameters used in getCertStore().
|
KeyManager[] |
DefaultSSLContextFactory.getKeyManagers()
Returns the KeyManagers to be used for initialising the SSLContext.
|
KeyManager[] |
X509SSLContextFactory.getKeyManagers()
Gets the trust managers.
|
protected PKIXParameters |
PKIXSSLContextFactory.getPKIXParameters()
Returns the PKIXParameters used for initialising the
ManagerFactoryParameters in getTrustParams().
|
protected KeyManager[] |
X509SSLContextFactory.getRawKeyManagers()
Builds KeyManagers from the key store provided in the constructor, using
a SunX509 KeyManagerFactory.
|
protected TrustManager[] |
PKIXSSLContextFactory.getRawTrustManagers()
Builds TrustManagers from the trust store provided in the constructor,
using a PKIX TrustManagerFactory.
|
protected TrustManager[] |
X509SSLContextFactory.getRawTrustManagers()
Builds TrustManagers from the trust store provided in the constructor,
using a SunX509 TrustManagerFactory.
|
SecureRandom |
DefaultSSLContextFactory.getSecureRandom()
Returns the SecureRandom to be used for initialising the SSLContext.
|
TrustManager[] |
DefaultSSLContextFactory.getTrustManagers()
Returns the TrustManagers to be used for initialising the SSLContext.
|
TrustManager[] |
X509SSLContextFactory.getTrustManagers()
Gets the trust managers.
|
protected ManagerFactoryParameters |
PKIXSSLContextFactory.getTrustParams()
Returns the ManagerFactoryParameters used for initialising the
TrustManagerFactory in getTrustManagers().
|
CRL |
PKIXSSLContextFactory.loadCrl(InputStream crlInputStream)
Builds a CRL object from an InputStream.
|
CRL |
PKIXSSLContextFactory.loadCrl(String crlUrl)
Builds a CRL object from a URL.
|
Copyright © 2015. All rights reserved.