Uses of Interface
org.bouncycastle.operator.ContentSigner
-
Packages that use ContentSigner Package Description org.bouncycastle.cert Basic support package for handling and creating X.509 certificates, CRLs, and attribute certificates.org.bouncycastle.cert.cmp Basic support package for handling and creating CMP (RFC 4210) certificate management messages.org.bouncycastle.cert.crmf Basic support package for handling and creating CRMF (RFC 4211) certificate request messages.org.bouncycastle.cert.ocsp Basic support package for handling and creating OCSP (RFC 2560) online certificate status requests.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.est A package for processing messages for RFC 7030 "Enrollment over Secure Transport".org.bouncycastle.operator Basic operator definitions for doing encryption, signing, and digest operations.org.bouncycastle.operator.bc Basic operator implementations for doing encryption, signing, and digest operations using the BC lightweight API.org.bouncycastle.operator.jcajce Basic operator implementations for doing encryption, signing, and digest operations using the JCA and the JCE.org.bouncycastle.pkcs Basic support package for handling and creating PKCS#10 certification requests, PKCS#8 encrypted keys and PKCS#12 keys stores. -
-
Uses of ContentSigner in org.bouncycastle.cert
Methods in org.bouncycastle.cert with parameters of type ContentSigner Modifier and Type Method Description X509CertificateHolder
X509v1CertificateBuilder. build(ContentSigner signer)
Generate an X509 certificate, based on the current issuer and subject using the passed in signer.X509AttributeCertificateHolder
X509v2AttributeCertificateBuilder. build(ContentSigner signer)
Generate an X509 certificate, based on the current issuer and subject using the passed in signer.X509CRLHolder
X509v2CRLBuilder. build(ContentSigner signer)
Generate an X.509 CRL, based on the current issuer and subject using the passed in signer.X509CertificateHolder
X509v3CertificateBuilder. build(ContentSigner signer)
Generate an X.509 certificate, based on the current issuer and subject using the passed in signer. -
Uses of ContentSigner in org.bouncycastle.cert.cmp
Methods in org.bouncycastle.cert.cmp with parameters of type ContentSigner Modifier and Type Method Description ProtectedPKIMessage
ProtectedPKIMessageBuilder. build(ContentSigner signer)
Build a protected PKI message which has MAC based integrity protection. -
Uses of ContentSigner in org.bouncycastle.cert.crmf
Methods in org.bouncycastle.cert.crmf with parameters of type ContentSigner Modifier and Type Method Description org.bouncycastle.asn1.crmf.POPOSigningKey
ProofOfPossessionSigningKeyBuilder. build(ContentSigner signer)
CertificateRequestMessageBuilder
CertificateRequestMessageBuilder. setProofOfPossessionSigningKeySigner(ContentSigner popSigner)
-
Uses of ContentSigner in org.bouncycastle.cert.ocsp
Methods in org.bouncycastle.cert.ocsp with parameters of type ContentSigner Modifier and Type Method Description BasicOCSPResp
BasicOCSPRespBuilder. build(ContentSigner signer, X509CertificateHolder[] chain, Date producedAt)
OCSPReq
OCSPReqBuilder. build(ContentSigner signer, X509CertificateHolder[] chain)
-
Uses of ContentSigner in org.bouncycastle.cms
Methods in org.bouncycastle.cms with parameters of type ContentSigner 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. -
Uses of ContentSigner in org.bouncycastle.cms.jcajce
Methods in org.bouncycastle.cms.jcajce with parameters of type ContentSigner 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)
-
Uses of ContentSigner in org.bouncycastle.est
Methods in org.bouncycastle.est with parameters of type ContentSigner Modifier and Type Method Description EnrollmentResponse
ESTService. simpleEnrollPoP(boolean reEnroll, PKCS10CertificationRequestBuilder builder, ContentSigner contentSigner, ESTAuth auth)
Implements Enroll with PoP. -
Uses of ContentSigner in org.bouncycastle.operator
Classes in org.bouncycastle.operator that implement ContentSigner Modifier and Type Class Description class
BufferingContentSigner
A class that explicitly buffers the data to be signed, sending it in one block when ready for signing.Constructors in org.bouncycastle.operator with parameters of type ContentSigner Constructor Description BufferingContentSigner(ContentSigner contentSigner)
Base constructor.BufferingContentSigner(ContentSigner contentSigner, int bufferSize)
Base constructor. -
Uses of ContentSigner in org.bouncycastle.operator.bc
Methods in org.bouncycastle.operator.bc that return ContentSigner Modifier and Type Method Description ContentSigner
BcContentSignerBuilder. build(org.bouncycastle.crypto.params.AsymmetricKeyParameter privateKey)
-
Uses of ContentSigner in org.bouncycastle.operator.jcajce
Methods in org.bouncycastle.operator.jcajce that return ContentSigner Modifier and Type Method Description ContentSigner
JcaContentSignerBuilder. build(PrivateKey privateKey)
-
Uses of ContentSigner in org.bouncycastle.pkcs
Methods in org.bouncycastle.pkcs with parameters of type ContentSigner Modifier and Type Method Description PKCS10CertificationRequest
PKCS10CertificationRequestBuilder. build(ContentSigner signer)
Generate an PKCS#10 request based on the past in signer.
-