Uses of Class
java.security.cert.CertStore
| Package | Description |
|---|---|
| java.security.cert |
This package provides all the classes and all the interfaces needed to generate, administer and verify
X.509 certificates.
|
| org.bouncycastle.cms |
-
Uses of CertStore in java.security.cert
Methods in java.security.cert that return CertStore Modifier and Type Method Description static CertStoreCertStore. getInstance(String type, CertStoreParameters params)Creates a newCertStoreinstance with the specified type and initialized with the specified parameters.static CertStoreCertStore. getInstance(String type, CertStoreParameters params, String provider)Creates a newCertStoreinstance from the specified provider with the specified type and initialized with the specified parameters.static CertStoreCertStore. getInstance(String type, CertStoreParameters params, Provider provider)Creates a newCertStoreinstance from the specified provider with the specified type and initialized with the specified parameters.Methods in java.security.cert that return types with arguments of type CertStore Modifier and Type Method Description List<CertStore>PKIXParameters. getCertStores()Returns the list of certificate stores that are used to find certificates and CRLs.Methods in java.security.cert with parameters of type CertStore Modifier and Type Method Description voidPKIXParameters. addCertStore(CertStore store)Adds a certificate store to the list of certificate stores that are used to find certificates and CRLs.Method parameters in java.security.cert with type arguments of type CertStore Modifier and Type Method Description voidPKIXParameters. setCertStores(List<CertStore> certStores)Set the list of certificate stores that are used to find certificates and CRLs. -
Uses of CertStore in org.bouncycastle.cms
Methods in org.bouncycastle.cms with parameters of type CertStore Modifier and Type Method Description voidCMSSignedGenerator. addCertificatesAndCRLs(CertStore certStore)Deprecated.use addCertificates and addCRLsstatic CMSSignedDataCMSSignedData. replaceCertificatesAndCRLs(CMSSignedData signedData, CertStore certsAndCrls)Deprecated.use method taking Store arguments.