java.lang.Object | |
↳ | java.security.cert.CertStoreSpi |
The Service Provider Interface (SPI) definition for the CertStore
class to be implemented by security providers.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new
CertStoreSpi .
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the list of
CRL s for the specified CRLSelector
from this instance.
| |||||||||||
Returns the list of
Certificate s for the specified CertSelector from this instance.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Creates a new CertStoreSpi
.
params | the initialization parameters. |
---|
InvalidAlgorithmParameterException | if the specified initialization parameters cannot be used to initialize this instance. |
---|
Returns the list of CRL
s for the specified CRLSelector
from this instance.
selector | the selector containing the criteria to search for certificate revocation lists in instance. |
---|
CRL
s that match the criteria of the specified
selectorCertStoreException | if error(s) occur. |
---|
Returns the list of Certificate
s for the specified CertSelector
from this instance.
selector | the selector containing the criteria to search for certificates in this instance. |
---|
Certificate
s that match the criteria of the
specified selector.CertStoreException | if error(s) occur. |
---|