Package org.bouncycastle.asn1.cms
Class SignedData
java.lang.Object
org.bouncycastle.asn1.ASN1Object
org.bouncycastle.asn1.cms.SignedData
- All Implemented Interfaces:
ASN1Encodable
public class SignedData extends ASN1Object
a signed data object.
-
Constructor Summary
Constructors Constructor Description SignedData(ASN1Set digestAlgorithms, ContentInfo contentInfo, ASN1Set certificates, ASN1Set crls, ASN1Set signerInfos) -
Method Summary
Modifier and Type Method Description ASN1SetgetCertificates()ASN1SetgetCRLs()ASN1SetgetDigestAlgorithms()ContentInfogetEncapContentInfo()static SignedDatagetInstance(Object o)ASN1SetgetSignerInfos()ASN1IntegergetVersion()ASN1PrimitivetoASN1Primitive()Produce an object suitable for an ASN1OutputStream.Methods inherited from class org.bouncycastle.asn1.ASN1Object
equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode, toASN1Object
-
Constructor Details
-
SignedData
public SignedData(ASN1Set digestAlgorithms, ContentInfo contentInfo, ASN1Set certificates, ASN1Set crls, ASN1Set signerInfos)
-
-
Method Details
-
getInstance
-
getVersion
-
getDigestAlgorithms
-
getEncapContentInfo
-
getCertificates
-
getCRLs
-
getSignerInfos
-
toASN1Primitive
Produce an object suitable for an ASN1OutputStream.SignedData ::= SEQUENCE { version CMSVersion, digestAlgorithms DigestAlgorithmIdentifiers, encapContentInfo EncapsulatedContentInfo, certificates [0] IMPLICIT CertificateSet OPTIONAL, crls [1] IMPLICIT CertificateRevocationLists OPTIONAL, signerInfos SignerInfos }- Specified by:
toASN1Primitivein interfaceASN1Encodable- Specified by:
toASN1Primitivein classASN1Object
-