Bouncy Castle Cryptography Library 1.79

org.bouncycastle.asn1.cms
Class EncryptedData

java.lang.Object
  extended byorg.bouncycastle.asn1.ASN1Object
      extended byorg.bouncycastle.asn1.cms.EncryptedData
All Implemented Interfaces:
org.bouncycastle.asn1.ASN1Encodable, org.bouncycastle.util.Encodable

public class EncryptedData
extends org.bouncycastle.asn1.ASN1Object

RFC 5652 EncryptedData object.

EncryptedData ::= SEQUENCE { version CMSVersion, encryptedContentInfo EncryptedContentInfo, unprotectedAttrs [1] IMPLICIT UnprotectedAttributes OPTIONAL }


Constructor Summary
EncryptedData(EncryptedContentInfo encInfo)
           
EncryptedData(EncryptedContentInfo encInfo, org.bouncycastle.asn1.ASN1Set unprotectedAttrs)
           
 
Method Summary
 EncryptedContentInfo getEncryptedContentInfo()
           
static EncryptedData getInstance(java.lang.Object o)
          Return an EncryptedData object from the given object.
 org.bouncycastle.asn1.ASN1Set getUnprotectedAttrs()
           
 org.bouncycastle.asn1.ASN1Integer getVersion()
           
 org.bouncycastle.asn1.ASN1Primitive toASN1Primitive()
           
 
Methods inherited from class org.bouncycastle.asn1.ASN1Object
encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EncryptedData

public EncryptedData(EncryptedContentInfo encInfo)

EncryptedData

public EncryptedData(EncryptedContentInfo encInfo,
                     org.bouncycastle.asn1.ASN1Set unprotectedAttrs)
Method Detail

getInstance

public static EncryptedData getInstance(java.lang.Object o)
Return an EncryptedData object from the given object.

Accepted inputs: null → null EncryptedData object ASN1Sequence input formats

Parameters:
o - the object we want converted.
Throws:
java.lang.IllegalArgumentException - if the object cannot be converted.

getVersion

public org.bouncycastle.asn1.ASN1Integer getVersion()

getEncryptedContentInfo

public EncryptedContentInfo getEncryptedContentInfo()

getUnprotectedAttrs

public org.bouncycastle.asn1.ASN1Set getUnprotectedAttrs()

toASN1Primitive

public org.bouncycastle.asn1.ASN1Primitive toASN1Primitive()
Returns:
a basic ASN.1 object representation.

Bouncy Castle Cryptography Library 1.79