Package org.bouncycastle.cms
Class CMSCompressedDataStreamGenerator
- java.lang.Object
 - 
- org.bouncycastle.cms.CMSCompressedDataStreamGenerator
 
 
- 
public class CMSCompressedDataStreamGenerator extends java.lang.ObjectGeneral class for generating a compressed CMS message stream.A simple example of usage.
CMSCompressedDataStreamGenerator gen = new CMSCompressedDataStreamGenerator(); OutputStream cOut = gen.open(outputStream, new ZlibCompressor()); cOut.write(data); cOut.close(); 
- 
- 
Field Summary
Fields Modifier and Type Field Description static java.lang.StringZLIB 
- 
Constructor Summary
Constructors Constructor Description CMSCompressedDataStreamGenerator()base constructor 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.OutputStreamopen(java.io.OutputStream out, OutputCompressor compressor)Open a compressing output stream with the PKCS#7 content type OID of "data".java.io.OutputStreamopen(org.bouncycastle.asn1.ASN1ObjectIdentifier contentOID, java.io.OutputStream out, OutputCompressor compressor)Open a compressing output stream.voidsetBufferSize(int bufferSize)Set the underlying string size for encapsulated data 
 - 
 
- 
- 
Field Detail
- 
ZLIB
public static final java.lang.String ZLIB
- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Method Detail
- 
setBufferSize
public void setBufferSize(int bufferSize)
Set the underlying string size for encapsulated data- Parameters:
 bufferSize- length of octet strings to buffer the data.
 
- 
open
public java.io.OutputStream open(java.io.OutputStream out, OutputCompressor compressor) throws java.io.IOExceptionOpen a compressing output stream with the PKCS#7 content type OID of "data".- Parameters:
 out- the stream to encode to.compressor- the type of compressor to use.- Returns:
 - an output stream to write the data be compressed to.
 - Throws:
 java.io.IOException
 
- 
open
public java.io.OutputStream open(org.bouncycastle.asn1.ASN1ObjectIdentifier contentOID, java.io.OutputStream out, OutputCompressor compressor) throws java.io.IOExceptionOpen a compressing output stream.- Parameters:
 contentOID- the content type OID.out- the stream to encode to.compressor- the type of compressor to use.- Returns:
 - an output stream to write the data be compressed to.
 - Throws:
 java.io.IOException
 
 - 
 
 -