use of com.github.zhenwei.pkix.operator.InputExpander in project LinLong-Java by zhenwei1108.
the class CMSCompressedDataParser method getContent.
/**
* Return a typed stream which will allow the reading of the compressed content in expanded form.
*
* @param expanderProvider a provider of expander algorithm implementations.
* @return a type stream which will yield the un-compressed content.
* @throws CMSException if there is an exception parsing the CompressedData object.
*/
public CMSTypedStream getContent(InputExpanderProvider expanderProvider) throws CMSException {
try {
CompressedDataParser comData = new CompressedDataParser((ASN1SequenceParser) _contentInfo.getContent(BERTags.SEQUENCE));
ContentInfoParser content = comData.getEncapContentInfo();
InputExpander expander = expanderProvider.get(comData.getCompressionAlgorithmIdentifier());
ASN1OctetStringParser bytes = (ASN1OctetStringParser) content.getContent(BERTags.OCTET_STRING);
return new CMSTypedStream(content.getContentType(), expander.getInputStream(bytes.getOctetStream()));
} catch (IOException e) {
throw new CMSException("IOException reading compressed content.", e);
}
}
use of com.github.zhenwei.pkix.operator.InputExpander in project LinLong-Java by zhenwei1108.
the class CMSCompressedData method getContentStream.
public CMSTypedStream getContentStream(InputExpanderProvider expanderProvider) {
ContentInfo content = comData.getEncapContentInfo();
ASN1OctetString bytes = (ASN1OctetString) content.getContent();
InputExpander expander = expanderProvider.get(comData.getCompressionAlgorithmIdentifier());
InputStream zIn = expander.getInputStream(bytes.getOctetStream());
return new CMSTypedStream(content.getContentType(), zIn);
}
use of com.github.zhenwei.pkix.operator.InputExpander in project LinLong-Java by zhenwei1108.
the class CMSCompressedData method getContent.
/**
* Return the uncompressed content.
*
* @param expanderProvider a provider of expander algorithm implementations.
* @return the uncompressed content
* @throws CMSException if there is an exception un-compressing the data.
*/
public byte[] getContent(InputExpanderProvider expanderProvider) throws CMSException {
ContentInfo content = comData.getEncapContentInfo();
ASN1OctetString bytes = (ASN1OctetString) content.getContent();
InputExpander expander = expanderProvider.get(comData.getCompressionAlgorithmIdentifier());
InputStream zIn = expander.getInputStream(bytes.getOctetStream());
try {
return CMSUtils.streamToByteArray(zIn);
} catch (IOException e) {
throw new CMSException("exception reading compressed stream.", e);
}
}
Aggregations