From cc18a545a87ca616f05114d174690e5cc9614669 Mon Sep 17 00:00:00 2001 From: Igor Tolmachev Date: Tue, 16 Jul 2024 17:24:33 +0900 Subject: Optimize encryption - Add archive for testing encryption of compressed files - Implement incorrect password check - Use custom crc32 function --- src/lib.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 9ec8b34..7490cc8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,14 +1,12 @@ mod archive; +mod driver; mod error; -mod file; +mod structs; mod utils; -pub mod driver; -pub mod structs; pub mod zip; pub use archive::Archive; pub use error::{ArchiveError, ArchiveResult}; -pub use file::ArchiveFile; pub use zip::Zip; -- cgit v1.2.3