//! CompressedData-related types
use Sequence;
use AlgorithmIdentifierOwned;
use crate CmsVersion;
use crate EncapsulatedContentInfo;
/// The `CompressedData` type is defined in [RFC 3274 Section 1.1].
///
/// ```text
/// CompressedData ::= SEQUENCE {
/// version CMSVersion,
/// compressionAlgorithm CompressionAlgorithmIdentifier,
/// encapContentInfo EncapsulatedContentInfo
/// }
/// ```
///
/// [RFC 3274 Section 1.1]: https://www.rfc-editor.org/rfc/rfc3274#section-1.1