Package org.bouncycastle.asn1.cms
Class CompressedDataParser
- java.lang.Object
-
- org.bouncycastle.asn1.cms.CompressedDataParser
-
public class CompressedDataParser extends java.lang.Object
Parser of RFC 3274CompressedData
object.CompressedData ::= SEQUENCE { version CMSVersion, compressionAlgorithm CompressionAlgorithmIdentifier, encapContentInfo EncapsulatedContentInfo }
-
-
Constructor Summary
Constructors Constructor Description CompressedDataParser(org.bouncycastle.asn1.ASN1SequenceParser seq)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.bouncycastle.asn1.x509.AlgorithmIdentifier
getCompressionAlgorithmIdentifier()
ContentInfoParser
getEncapContentInfo()
org.bouncycastle.asn1.ASN1Integer
getVersion()
-
-
-
Method Detail
-
getVersion
public org.bouncycastle.asn1.ASN1Integer getVersion()
-
getCompressionAlgorithmIdentifier
public org.bouncycastle.asn1.x509.AlgorithmIdentifier getCompressionAlgorithmIdentifier()
-
getEncapContentInfo
public ContentInfoParser getEncapContentInfo()
-
-