diff options
| author | Igor Tolmachev <me@igorek.dev> | 2024-07-16 01:59:53 +0900 |
|---|---|---|
| committer | Igor Tolmachev <me@igorek.dev> | 2024-07-16 01:59:53 +0900 |
| commit | a83767f9fbd51df654901b52bdba7838f6a10bf9 (patch) | |
| tree | e9e2fcfb9975a2c2dd6e65c65fd736a035ea6cae /src/zip/file/mod.rs | |
| parent | 2fdbec0525bc2a0839ea649106886cb157507a38 (diff) | |
| download | archivator-a83767f9fbd51df654901b52bdba7838f6a10bf9.tar.gz archivator-a83767f9fbd51df654901b52bdba7838f6a10bf9.zip | |
Add traditional PKWARE decryption.
- Compression and encryption may not work together
- Password check is not yet implemented
- Unoptimized crc32 function
Diffstat (limited to 'src/zip/file/mod.rs')
| -rw-r--r-- | src/zip/file/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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; | |||
| 2 | mod read; | 2 | mod read; |
| 3 | mod write; | 3 | mod write; |
| 4 | 4 | ||
| 5 | pub use info::{bit, BitFlag, CompressionMethod, ZipFileInfo}; | 5 | pub use info::{bit, BitFlag, CompressionMethod, EncryptionMethod, ZipFileInfo}; |
| 6 | pub use read::ZipFileReader; | 6 | pub use read::ZipFileReader; |
| 7 | pub use write::ZipFileWriter; | 7 | pub use write::ZipFileWriter; |
