Uses of Class
org.bouncycastle.cms.SignerInformation
-
Packages that use SignerInformation 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.tsp Classes for dealing Time Stamp Protocol (TSP) - RFC 3161. -
-
Uses of SignerInformation in org.bouncycastle.cms
Methods in org.bouncycastle.cms that return SignerInformation Modifier and Type Method Description static SignerInformation
SignerInformation. addCounterSigners(SignerInformation signerInformation, SignerInformationStore counterSigners)
Return a signer information object with passed in SignerInformationStore representing counter signatures attached as an unsigned attribute.static SignerInformation
CMSPatchKit. createNonDERSignerInfo(SignerInformation original)
Create a SignerInformation based on original which uses definite-length rather than DER encoding for verifying the signature on the signed attributes.static SignerInformation
CMSPatchKit. createWithSignatureAlgorithm(SignerInformation original, org.bouncycastle.asn1.x509.AlgorithmIdentifier signatureAlgorithm)
Create a SignerInformation based on original has it's signatureAlgorithm replaced with the passed in AlgorithmIdentifier.SignerInformation
SignerInformationStore. get(SignerId selector)
Return the first SignerInformation object that matches the passed in selector.static SignerInformation
SignerInformation. replaceUnsignedAttributes(SignerInformation signerInformation, org.bouncycastle.asn1.cms.AttributeTable unsignedAttributes)
Return a signer information object with the passed in unsigned attributes replacing the ones that are current associated with the object passed in.Methods in org.bouncycastle.cms that return types with arguments of type SignerInformation Modifier and Type Method Description Collection<SignerInformation>
SignerInformationStore. getSigners()
Return all signers in the collectionCollection<SignerInformation>
SignerInformationStore. getSigners(SignerId selector)
Return possible empty collection with signers matching the passed in SignerIdIterator<SignerInformation>
SignerInformationStore. iterator()
Support method for Iterable where available.Methods in org.bouncycastle.cms with parameters of type SignerInformation Modifier and Type Method Description static SignerInformation
SignerInformation. addCounterSigners(SignerInformation signerInformation, SignerInformationStore counterSigners)
Return a signer information object with passed in SignerInformationStore representing counter signatures attached as an unsigned attribute.static SignerInformation
CMSPatchKit. createNonDERSignerInfo(SignerInformation original)
Create a SignerInformation based on original which uses definite-length rather than DER encoding for verifying the signature on the signed attributes.static SignerInformation
CMSPatchKit. createWithSignatureAlgorithm(SignerInformation original, org.bouncycastle.asn1.x509.AlgorithmIdentifier signatureAlgorithm)
Create a SignerInformation based on original has it's signatureAlgorithm replaced with the passed in AlgorithmIdentifier.SignerInformationStore
CMSSignedDataGenerator. generateCounterSigners(SignerInformation signer)
generate a set of one or more SignerInformation objects representing counter signatures on the passed in SignerInformation object.static SignerInformation
SignerInformation. replaceUnsignedAttributes(SignerInformation signerInformation, org.bouncycastle.asn1.cms.AttributeTable unsignedAttributes)
Return a signer information object with the passed in unsigned attributes replacing the ones that are current associated with the object passed in.Constructors in org.bouncycastle.cms with parameters of type SignerInformation Constructor Description SignerInformation(SignerInformation baseInfo)
Protected constructor.SignerInformation(SignerInformation baseInfo, org.bouncycastle.asn1.cms.SignerInfo info)
Protected constructor.SignerInformationStore(SignerInformation signerInfo)
Create a store containing a single SignerInformation object.Constructor parameters in org.bouncycastle.cms with type arguments of type SignerInformation Constructor Description SignerInformationStore(Collection<SignerInformation> signerInfos)
Create a store containing a collection of SignerInformation objects. -
Uses of SignerInformation in org.bouncycastle.tsp
Methods in org.bouncycastle.tsp with parameters of type SignerInformation Modifier and Type Method Description static Collection
TSPUtil. getSignatureTimestamps(SignerInformation signerInfo, DigestCalculatorProvider digCalcProvider)
Fetches the signature time-stamp attributes from a SignerInformation object.
-