org.bouncycastle.asn1.cms
Class CompressedData

java.lang.Object
  extended by org.bouncycastle.asn1.ASN1Encodable
      extended by org.bouncycastle.asn1.cms.CompressedData
All Implemented Interfaces:
DEREncodable

public class CompressedData
extends ASN1Encodable

RFC 3274 - CMS Compressed Data.

 CompressedData ::= SEQUENCE {
  version CMSVersion,
  compressionAlgorithm CompressionAlgorithmIdentifier,
  encapContentInfo EncapsulatedContentInfo
 }
 


Field Summary
private  AlgorithmIdentifier compressionAlgorithm
           
private  ContentInfo encapContentInfo
           
private  DERInteger version
           
 
Fields inherited from class org.bouncycastle.asn1.ASN1Encodable
BER, DER
 
Constructor Summary
CompressedData(AlgorithmIdentifier compressionAlgorithm, ContentInfo encapContentInfo)
           
CompressedData(ASN1Sequence seq)
           
 
Method Summary
 AlgorithmIdentifier getCompressionAlgorithmIdentifier()
           
 ContentInfo getEncapContentInfo()
           
static CompressedData getInstance(ASN1TaggedObject _ato, boolean _explicit)
          return a CompressedData object from a tagged object.
static CompressedData getInstance(java.lang.Object _obj)
          return a CompressedData object from the given object.
 DERInteger getVersion()
           
 DERObject toASN1Object()
           
 
Methods inherited from class org.bouncycastle.asn1.ASN1Encodable
equals, getDEREncoded, getDERObject, getEncoded, getEncoded, hashCode
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

version

private DERInteger version

compressionAlgorithm

private AlgorithmIdentifier compressionAlgorithm

encapContentInfo

private ContentInfo encapContentInfo
Constructor Detail

CompressedData

public CompressedData(AlgorithmIdentifier compressionAlgorithm,
                      ContentInfo encapContentInfo)

CompressedData

public CompressedData(ASN1Sequence seq)
Method Detail

getInstance

public static CompressedData getInstance(ASN1TaggedObject _ato,
                                         boolean _explicit)
return a CompressedData object from a tagged object.

Parameters:
_ato - the tagged object holding the object we want.
_explicit - true if the object is meant to be explicitly tagged false otherwise.
Throws:
java.lang.IllegalArgumentException - if the object held by the tagged object cannot be converted.

getInstance

public static CompressedData getInstance(java.lang.Object _obj)
return a CompressedData object from the given object.

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

getVersion

public DERInteger getVersion()

getCompressionAlgorithmIdentifier

public AlgorithmIdentifier getCompressionAlgorithmIdentifier()

getEncapContentInfo

public ContentInfo getEncapContentInfo()

toASN1Object

public DERObject toASN1Object()
Specified by:
toASN1Object in class ASN1Encodable