remove CompressionMethod::Aes enum variant

This commit is contained in:
Lireer 2022-01-30 22:40:31 +01:00
parent 1cd39fb43c
commit aa6adcb1c0

View file

@ -24,12 +24,6 @@ pub enum CompressionMethod {
/// Compress the file using BZIP2 /// Compress the file using BZIP2
#[cfg(feature = "bzip2")] #[cfg(feature = "bzip2")]
Bzip2, Bzip2,
/// Encrypted using AES.
///
/// The actual compression method has to be taken from the AES extra data field
/// or from `ZipFileData`.
#[cfg(feature = "aes-crypto")]
Aes,
/// Compress the file using ZStandard /// Compress the file using ZStandard
#[cfg(feature = "zstd")] #[cfg(feature = "zstd")]
Zstd, Zstd,
@ -78,9 +72,10 @@ impl CompressionMethod {
pub const JPEG: Self = CompressionMethod::Unsupported(96); pub const JPEG: Self = CompressionMethod::Unsupported(96);
pub const WAVPACK: Self = CompressionMethod::Unsupported(97); pub const WAVPACK: Self = CompressionMethod::Unsupported(97);
pub const PPMD: Self = CompressionMethod::Unsupported(98); pub const PPMD: Self = CompressionMethod::Unsupported(98);
#[cfg(feature = "aes-crypto")] /// Encrypted using AES.
pub const AES: Self = CompressionMethod::Aes; ///
#[cfg(not(feature = "aes-crypto"))] /// The actual compression method has to be taken from the AES extra data field
/// or from `ZipFileData`.
pub const AES: Self = CompressionMethod::Unsupported(99); pub const AES: Self = CompressionMethod::Unsupported(99);
} }
impl CompressionMethod { impl CompressionMethod {