public class CMSCompressedData
extends java.lang.Object
Constructor and Description |
---|
CMSCompressedData(byte[] compressedData) |
CMSCompressedData(org.bouncycastle.asn1.cms.ContentInfo contentInfo) |
CMSCompressedData(java.io.InputStream compressedData) |
Modifier and Type | Method and Description |
---|---|
byte[] |
getContent()
Return the uncompressed content.
|
byte[] |
getContent(int limit)
Return the uncompressed content, throwing an exception if the data size
is greater than the passed in limit.
|
org.bouncycastle.asn1.cms.ContentInfo |
getContentInfo()
return the ContentInfo
|
byte[] |
getEncoded()
return the ASN.1 encoded representation of this object.
|
public CMSCompressedData(byte[] compressedData) throws CMSException
CMSException
public CMSCompressedData(java.io.InputStream compressedData) throws CMSException
CMSException
public CMSCompressedData(org.bouncycastle.asn1.cms.ContentInfo contentInfo) throws CMSException
CMSException
public byte[] getContent() throws CMSException
CMSException
- if there is an exception uncompressing the data.public byte[] getContent(int limit) throws CMSException
limit
- maximum number of bytes to readCMSException
- if there is an exception uncompressing the data.public org.bouncycastle.asn1.cms.ContentInfo getContentInfo()
public byte[] getEncoded() throws java.io.IOException
java.io.IOException