org.bouncycastle.asn1.cms
Class ContentInfo
java.lang.Object
|
+--org.bouncycastle.asn1.ASN1Object
|
+--org.bouncycastle.asn1.cms.ContentInfo
- All Implemented Interfaces:
- ASN1Encodable, CMSObjectIdentifiers, Encodable
- public class ContentInfo
- extends ASN1Object
- implements CMSObjectIdentifiers
RFC 5652 ContentInfo, and
RFC 5652 EncapsulatedContentInfo objects.
ContentInfo ::= SEQUENCE {
contentType ContentType,
content [0] EXPLICIT ANY DEFINED BY contentType OPTIONAL
}
EncapsulatedContentInfo ::= SEQUENCE {
eContentType ContentType,
eContent [0] EXPLICIT OCTET STRING OPTIONAL
}
Fields inherited from interface org.bouncycastle.asn1.cms.CMSObjectIdentifiers |
authenticatedData, authEnvelopedData, compressedData, data, digestedData, encryptedData, envelopedData, id_alg, id_ecdsa_with_shake128, id_ecdsa_with_shake256, id_ori, id_ori_kem, id_ri, id_ri_ocsp_response, id_ri_scvp, id_RSASSA_PSS_SHAKE128, id_RSASSA_PSS_SHAKE256, signedAndEnvelopedData, signedData, timestampedData, zlibCompress |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
ContentInfo
public ContentInfo(ASN1ObjectIdentifier contentType,
ASN1Encodable content)
getInstance
public static ContentInfo getInstance(java.lang.Object obj)
- Return an ContentInfo object from the given object.
Accepted inputs:
null → null
ContentInfo
object
ASN1Sequence
input formats with ContentInfo structure inside
- Parameters:
obj
- the object we want converted.- Throws:
java.lang.IllegalArgumentException
- if the object cannot be converted.
getInstance
public static ContentInfo getInstance(ASN1TaggedObject obj,
boolean explicit)
getContentType
public ASN1ObjectIdentifier getContentType()
getContent
public ASN1Encodable getContent()
isDefiniteLength
public boolean isDefiniteLength()
- Return true if this object encapsulates a definite-length structure.
- Returns:
- true if definite-length, false if indefinite.
toASN1Primitive
public ASN1Primitive toASN1Primitive()
- Produce an object suitable for an ASN1OutputStream.
- Overrides:
toASN1Primitive
in class ASN1Object
- Following copied from class:
org.bouncycastle.asn1.ASN1Object
- Returns:
- a primitive representation of this object.