-
-
Methods in org.bouncycastle.cms that return Store
| Modifier and Type |
Method |
Description |
Store |
CMSSignedData.getAttributeCertificates() |
Return any X.509 attribute certificate objects in this SignedData structure as a Store of X509AttributeCertificateHolder objects.
|
Store |
CMSSignedData.getCertificates() |
Return any X.509 certificate objects in this SignedData structure as a Store of X509CertificateHolder objects.
|
Store |
CMSSignedData.getCRLs() |
Return any X.509 CRL objects in this SignedData structure as a Store of X509CRLHolder objects.
|
Methods in org.bouncycastle.cms with parameters of type Store
| Modifier and Type |
Method |
Description |
void |
CMSSignedGenerator.addAttributeCertificates(Store attrStore) |
Add the attribute certificates in attrStore to the certificate set to be included with the generated SignedData message.
|
void |
CMSSignedGenerator.addCertificates(Store certStore) |
Add the certificates in certStore to the certificate set to be included with the generated SignedData message.
|
void |
CMSSignedGenerator.addCRLs(Store crlStore) |
Add the CRLs in crlStore to the CRL set to be included with the generated SignedData message.
|
static CMSSignedData |
CMSSignedData.replaceCertificatesAndCRLs(CMSSignedData signedData,
Store certificates,
Store attrCerts,
Store crls) |
Replace the certificate and CRL information associated with this
CMSSignedData object with the new one passed in.
|
-
-
Methods in org.bouncycastle.x509 with parameters of type Store
| Modifier and Type |
Method |
Description |
void |
ExtendedPKIXParameters.addAddionalStore(Store store) |
Deprecated.
|
void |
ExtendedPKIXParameters.addAdditionalStore(Store store) |
Adds an additional Bouncy Castle Store to find CRLs, certificates,
attribute certificates or cross certificates.
|
void |
ExtendedPKIXParameters.addStore(Store store) |
Adds a Bouncy Castle Store to find CRLs, certificates, attribute
certificates or cross certificates.
|