Uses of Class
org.bouncycastle.cms.SignerInfoGenerator
-
Packages that use SignerInfoGenerator Package Description org.bouncycastle.cms A package for processing RFC 3852 Cryptographic Message Syntax (CMS) objects - also referred to as PKCS#7 (formerly RFC 2630, 3369).org.bouncycastle.cms.jcajce CMS operator implementations for doing message encryption, signing, digesting, and MACing operations using the JCA and the JCE.org.bouncycastle.mime.smime org.bouncycastle.tsp Classes for dealing Time Stamp Protocol (TSP) - RFC 3161. -
-
Uses of SignerInfoGenerator in org.bouncycastle.cms
Methods in org.bouncycastle.cms that return SignerInfoGenerator Modifier and Type Method Description SignerInfoGenerator
SignerInfoGeneratorBuilder. build(ContentSigner contentSigner, byte[] subjectKeyIdentifier)
Build a generator with the passed in subjectKeyIdentifier as the signerIdentifier.SignerInfoGenerator
SignerInfoGeneratorBuilder. build(ContentSigner contentSigner, X509CertificateHolder certHolder)
Build a generator with the passed in certHolder issuer and serial number as the signerIdentifier.Methods in org.bouncycastle.cms with parameters of type SignerInfoGenerator Modifier and Type Method Description void
CMSSignedGenerator. addSignerInfoGenerator(SignerInfoGenerator infoGen)
Add a generator for a particular signer to this CMS SignedData generator.Constructors in org.bouncycastle.cms with parameters of type SignerInfoGenerator Constructor Description SignerInfoGenerator(SignerInfoGenerator original, CMSAttributeTableGenerator sAttrGen, CMSAttributeTableGenerator unsAttrGen)
-
Uses of SignerInfoGenerator in org.bouncycastle.cms.jcajce
Methods in org.bouncycastle.cms.jcajce that return SignerInfoGenerator Modifier and Type Method Description SignerInfoGenerator
JcaSignerInfoGeneratorBuilder. build(ContentSigner contentSigner, byte[] keyIdentifier)
SignerInfoGenerator
JcaSignerInfoGeneratorBuilder. build(ContentSigner contentSigner, X509Certificate certificate)
SignerInfoGenerator
JcaSignerInfoGeneratorBuilder. build(ContentSigner contentSigner, X509CertificateHolder certHolder)
SignerInfoGenerator
JcaSimpleSignerInfoGeneratorBuilder. build(String algorithmName, PrivateKey privateKey, byte[] keyIdentifier)
SignerInfoGenerator
JcaSimpleSignerInfoGeneratorBuilder. build(String algorithmName, PrivateKey privateKey, X509Certificate certificate)
SignerInfoGenerator
JcaSimpleSignerInfoGeneratorBuilder. build(String algorithmName, PrivateKey privateKey, X509CertificateHolder certificate)
-
Uses of SignerInfoGenerator in org.bouncycastle.mime.smime
Methods in org.bouncycastle.mime.smime with parameters of type SignerInfoGenerator Modifier and Type Method Description SMIMESignedWriter.Builder
SMIMESignedWriter.Builder. addSignerInfoGenerator(SignerInfoGenerator signerGenerator)
Add a generator to produce the signer info required. -
Uses of SignerInfoGenerator in org.bouncycastle.tsp
Constructors in org.bouncycastle.tsp with parameters of type SignerInfoGenerator Constructor Description TimeStampTokenGenerator(SignerInfoGenerator signerInfoGen, DigestCalculator digestCalculator, org.bouncycastle.asn1.ASN1ObjectIdentifier tsaPolicy)
Basic Constructor - set up a calculator based on signerInfoGen with a ESSCertID calculated from the signer's associated certificate using the sha1DigestCalculator.TimeStampTokenGenerator(SignerInfoGenerator signerInfoGen, DigestCalculator digestCalculator, org.bouncycastle.asn1.ASN1ObjectIdentifier tsaPolicy, boolean isIssuerSerialIncluded)
Basic Constructor - set up a calculator based on signerInfoGen with a ESSCertID calculated from the signer's associated certificate using the sha1DigestCalculator.
-