Chris Hennick
fb781e0517
chore: Add feature gate for new unit test
2024-06-02 18:53:27 -07:00
Chris Hennick
c8d1cb905f
Merge branch 'master' into utf8_extra_fields
2024-06-02 17:52:04 -07:00
Chris Hennick
847e537e86
test: Add unit test for UTF8 extra-field handling
2024-06-02 17:46:55 -07:00
Chris Hennick
2a131e67a9
fix: Use deflate-flate2 flag to guard import
2024-06-02 17:29:49 -07:00
Chris Hennick
7530ce5000
style: Cargo fmt --all
2024-06-02 11:56:46 -07:00
Chris Hennick
e3c81023a7
fix: Decode Zip-Info UTF8 name and comment fields ( #159 )
2024-06-02 11:52:20 -07:00
Alex Franchuk
a8875b0226
feat: Allow the archive offset behavior of the reader to be configured.
...
Aside from supporting the current behavior which allows archives to be
preceded by arbitrary data (added in fc749a09), this also allows
detection of the offset to use by checking whether a central directory
header is at the expected location. This is configurable because if the
behavior were based only on detection, there could be false positives if
archive data happened to contain a central directory header at the right
spot.
2024-05-29 13:59:20 -04:00
Danny McClanahan
a769e9410e
Revert "interpose ZipRawValues into ZipFileData"
...
This reverts commit d8d4dee5cec372878259380fa347c0ffc6cca044.
2024-05-24 08:00:04 -04:00
Danny McClanahan
fe663b9ee6
tiny fix
2024-05-24 07:58:06 -04:00
Danny McClanahan
4a784b5636
interpose ZipRawValues into ZipFileData
2024-05-24 07:58:05 -04:00
Danny McClanahan
d852c222fc
review comments 1
2024-05-24 07:54:40 -04:00
Danny McClanahan
a7fd5874cf
reduce visibility for all the blocks
2024-05-24 07:54:40 -04:00
Danny McClanahan
3d6c4d1ae4
fix fuzz failure
2024-05-24 07:54:05 -04:00
Danny McClanahan
8fbc4039a8
lean more on the ::MAGIC trait constants
2024-05-24 07:54:04 -04:00
Danny McClanahan
cf2d980612
expose pub(crate) methods to convert compression methods
2024-05-24 07:53:15 -04:00
Danny McClanahan
08385d52e1
implement find_content() by parsing with blocks
2024-05-24 07:52:31 -04:00
Danny McClanahan
3fa0d84554
make Magic into a wrapper struct
2024-05-24 07:52:31 -04:00
Danny McClanahan
46c42c7f82
review comments 1
2024-05-24 07:52:30 -04:00
Danny McClanahan
ea308499af
bulk parsing and bulk writing
...
- use blocks for reading individual file headers
- remove unnecessary option wrapping for stream entries
- create Block trait
- add coerce method to reduce some boilerplate
- add serialize method to reduce more boilerplate
- use to_le! and from_le!
- add test case
- add some docs
- rename a few structs to clarify zip32-only
2024-05-24 07:52:25 -04:00
Danny McClanahan
7a55945743
add benchmarks
2024-05-24 07:39:54 -04:00
Chris Hennick
6d1b5f7d6c
Merge pull request #143 from agourlay/expose-aes-info
...
feat: Expose AES information
2024-05-23 22:53:58 +00:00
Chris Hennick
7d61377503
refactor: Change type of last_modified_time
to Option<DateTime>
2024-05-23 14:15:38 -07:00
Chris Hennick
492a6b9d12
chore: Guard AesInfo behind #[cfg(feature = "aes-crypto")]
...
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-23 13:04:31 -07:00
Chris Hennick
74c604f29c
Need aes-crypto feature to use crate::aes::PWD_VERIFY_LENGTH
...
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-23 12:42:35 -07:00
Arnaud Gourlay
6db572ce65
review & clippy
2024-05-23 20:14:01 +02:00
Arnaud Gourlay
6da1faa4f1
code review
2024-05-23 20:14:00 +02:00
Arnaud Gourlay
985d3a7809
Expose AES information
2024-05-23 20:14:00 +02:00
Chris Hennick
b0c666aa0c
chore: Continue to accept archives with invalid DateTime, and use now_utc()
as default only when writing, not reading
2024-05-23 09:44:06 -07:00
Chris Hennick
7a34aa5f41
refactor!: Rename from_msdos
to from_msdos_unchecked
, make it unsafe, and add try_from_msdos
( #145 )
2024-05-23 09:04:53 -07:00
Chris Hennick
89b9b668ec
refactor: Reject encrypted and using_data_descriptor files slightly faster in read_zipfile_from_stream
2024-05-19 16:53:56 -07:00
Chris Hennick
fbf111ef97
style: cargo fmt --all
2024-05-15 17:09:12 -07:00
Chris Hennick
3e06f6433a
chore: Fix borrow-of-moved-value
2024-05-15 17:08:40 -07:00
Chris Hennick
633a6733e6
refactor: Check if archive contains a symlink's target, without borrowing both at the same time
2024-05-15 17:06:57 -07:00
Chris Hennick
17fee7938a
refactor: Eliminate a clone that's no longer necessary
2024-05-15 16:57:37 -07:00
Chris Hennick
7536a98da1
chore: Box<str> doesn't directly convert to PathBuf, so convert back to String first
2024-05-15 16:55:00 -07:00
Chris Hennick
d78f127039
chore: contains_key needs a Box<str>
, so generify is_dir
to accept one
2024-05-15 16:49:05 -07:00
Chris Hennick
b7ac989013
refactor: is_dir only needs to look at the filename
2024-05-15 16:44:59 -07:00
Chris Hennick
1e574a961a
chore: Fix another Windows-specific error
2024-05-15 16:14:57 -07:00
Chris Hennick
91dcf305d7
chore: More bug fixes for Windows-specific symlink code
2024-05-15 16:11:37 -07:00
Chris Hennick
ce818e4df1
chore: More bug fixes for Windows-specific symlink code
2024-05-15 16:08:39 -07:00
Chris Hennick
aca750d616
chore: Bug fix: variable name change
2024-05-15 15:57:54 -07:00
Chris Hennick
9d11f4cf68
chore: Bug fix: need both internal and output path to determine whether to symlink_dir
2024-05-15 15:53:26 -07:00
Chris Hennick
2a67534fcb
chore: Another bug fix
2024-05-15 15:37:31 -07:00
Chris Hennick
47a07fb964
chore: Fix another error-type conversion error
2024-05-15 15:32:08 -07:00
Chris Hennick
23068ad7c2
chore: Fix error-type conversion on Windows
2024-05-15 15:22:49 -07:00
Chris Hennick
8435561093
chore: Fix continued issues, and factor out the Vec<u8>-to-OsString conversion (cc: #125 )
2024-05-15 15:08:41 -07:00
Chris Hennick
c52ec50306
chore: Fix CI failure involving conversion to OsString for symlinks (see my comments on #125 )
2024-05-15 14:47:52 -07:00
Chris Hennick
f275acf1d2
chore: Move path join into platform-independent code
2024-05-14 13:25:15 -07:00
Chris Hennick
0ec043d6be
style: Remove an unused import on Windows
2024-05-14 13:11:57 -07:00
Chris Hennick
d96ba59197
doc: Document symlink extraction behavior
2024-05-13 20:56:03 -07:00