org.bouncycastle.asn1.cms
public class SignedData extends ASN1Encodable
| Constructor Summary | |
|---|---|
| SignedData(ASN1Set digestAlgorithms, ContentInfo contentInfo, ASN1Set certificates, ASN1Set crls, ASN1Set signerInfos) | |
| SignedData(ASN1Sequence seq) | |
| Method Summary | |
|---|---|
| ASN1Set | getCertificates() |
| ASN1Set | getCRLs() |
| ASN1Set | getDigestAlgorithms() |
| ContentInfo | getEncapContentInfo() |
| static SignedData | getInstance(Object o) |
| ASN1Set | getSignerInfos() |
| DERInteger | getVersion() |
| DERObject | toASN1Object()
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
}