org.bouncycastle.asn1.cms
Class EncryptedContentInfo
java.lang.Object
|
+--org.bouncycastle.asn1.cms.EncryptedContentInfo
- All Implemented Interfaces:
- DEREncodable
- public class EncryptedContentInfo
- extends java.lang.Object
- implements DEREncodable
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
EncryptedContentInfo
public EncryptedContentInfo(DERObjectIdentifier contentType,
AlgorithmIdentifier contentEncryptionAlgorithm,
ASN1OctetString encryptedContent)
EncryptedContentInfo
public EncryptedContentInfo(ASN1Sequence seq)
getInstance
public static EncryptedContentInfo getInstance(java.lang.Object obj)
- return an EncryptedContentInfo object from the given object.
- Parameters:
obj
- the object we want converted.- Throws:
java.lang.IllegalArgumentException
- if the object cannot be converted.
getContentType
public DERObjectIdentifier getContentType()
getContentEncryptionAlgorithm
public AlgorithmIdentifier getContentEncryptionAlgorithm()
getEncryptedContent
public ASN1OctetString getEncryptedContent()
getDERObject
public DERObject getDERObject()
EncryptedContentInfo ::= SEQUENCE {
contentType ContentType,
contentEncryptionAlgorithm ContentEncryptionAlgorithmIdentifier,
encryptedContent [0] IMPLICIT EncryptedContent OPTIONAL
}
- Specified by:
getDERObject
in interface DEREncodable