Package org.bouncycastle.cms
Class CMSCompressedData
java.lang.Object
org.bouncycastle.cms.CMSCompressedData
- All Implemented Interfaces:
org.bouncycastle.util.Encodable
containing class for an CMS Compressed Data object
CMSCompressedData cd = new CMSCompressedData(inputStream); process(cd.getContent(new ZlibExpanderProvider()));
-
Constructor Summary
ConstructorsConstructorDescriptionCMSCompressedData
(byte[] compressedData) CMSCompressedData
(InputStream compressedData) CMSCompressedData
(org.bouncycastle.asn1.cms.ContentInfo contentInfo) -
Method Summary
Modifier and TypeMethodDescriptionorg.bouncycastle.asn1.ASN1ObjectIdentifier
byte[]
getContent
(InputExpanderProvider expanderProvider) Return the uncompressed content.getContentStream
(InputExpanderProvider expanderProvider) org.bouncycastle.asn1.ASN1ObjectIdentifier
byte[]
return the ASN.1 encoded representation of this object.org.bouncycastle.asn1.cms.ContentInfo
return the ContentInfo
-
Constructor Details
-
CMSCompressedData
- Throws:
CMSException
-
CMSCompressedData
- Throws:
CMSException
-
CMSCompressedData
- Throws:
CMSException
-
-
Method Details
-
getContentType
public org.bouncycastle.asn1.ASN1ObjectIdentifier getContentType() -
getCompressedContentType
public org.bouncycastle.asn1.ASN1ObjectIdentifier getCompressedContentType() -
getContentStream
-
getContent
Return the uncompressed content.- Parameters:
expanderProvider
- a provider of expander algorithm implementations.- Returns:
- the uncompressed content
- Throws:
CMSException
- if there is an exception un-compressing the data.
-
toASN1Structure
public org.bouncycastle.asn1.cms.ContentInfo toASN1Structure()return the ContentInfo -
getEncoded
return the ASN.1 encoded representation of this object.- Specified by:
getEncoded
in interfaceorg.bouncycastle.util.Encodable
- Throws:
IOException
-