From a83767f9fbd51df654901b52bdba7838f6a10bf9 Mon Sep 17 00:00:00 2001 From: Igor Tolmachev Date: Tue, 16 Jul 2024 01:59:53 +0900 Subject: Add traditional PKWARE decryption. - Compression and encryption may not work together - Password check is not yet implemented - Unoptimized crc32 function --- src/zip/file/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/zip/file/mod.rs') diff --git a/src/zip/file/mod.rs b/src/zip/file/mod.rs index 43ccc04..ce3c21d 100644 --- a/src/zip/file/mod.rs +++ b/src/zip/file/mod.rs @@ -2,6 +2,6 @@ mod info; mod read; mod write; -pub use info::{bit, BitFlag, CompressionMethod, ZipFileInfo}; +pub use info::{bit, BitFlag, CompressionMethod, EncryptionMethod, ZipFileInfo}; pub use read::ZipFileReader; pub use write::ZipFileWriter; -- cgit v1.2.3