Chris Hennick
eb063ad432
perf: Optimize for the fact that false signatures can't overlap with real ones
2024-05-08 10:59:32 -07:00
Chris Hennick
0c9be885cb
style: Fix more conditionally-unused imports
2024-05-07 22:09:30 -07:00
Chris Hennick
d5b4c6186d
style: Fix conditionally-unused import
2024-05-07 21:52:11 -07:00
Chris Hennick
15f124f181
style: Fix formatting and Clippy warnings
2024-05-07 21:50:52 -07:00
Chris Hennick
6d7c7fa57a
fix: Failed to clear "writing_raw" before finishing a symlink, leading to dropped extra fields
2024-05-07 21:47:49 -07:00
Chris Hennick
f7ab2ae506
fix: Prevent panic when trying to read a file with an unsupported compression method
2024-05-06 16:43:04 -07:00
Chris Hennick
d13031cc14
fix: Prevent panic after reading an invalid LZMA file
2024-05-06 16:08:41 -07:00
Chris Hennick
8868a11d23
test(fuzz): Fix a fuzz-read bug when finishing LZMA
2024-05-06 15:53:12 -07:00
Chris Hennick
162c9b7281
test(fuzz): Fix bugs that were breaking the fuzz test
2024-05-06 14:41:51 -07:00
Chris Hennick
447f9c6e4f
refactor: Overhaul impl Arbitrary for FileOptions
2024-05-06 14:20:27 -07:00
Chris Hennick
845c3ec91f
refactor: Remove unused atomic
module
2024-05-06 14:14:25 -07:00
Chris Hennick
0518194ae2
style: cargo fmt --all
2024-05-06 13:07:19 -07:00
Chris Hennick
eb4777c129
fix: Make Stored
the default compression method if Deflated
isn't available, so that zip files are readable by as much software as possible
2024-05-06 13:00:43 -07:00
Chris Hennick
3ff9428e66
Merge branch 'master' into aes-encryption3
...
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-06 11:44:55 -07:00
Chris Hennick
2cff4ec936
test: Update reference version-needed-to-open in unit tests (cont'd)
2024-05-06 11:43:01 -07:00
Chris Hennick
ad292ffbd2
test: Update reference version-needed-to-open in unit tests
2024-05-06 11:34:25 -07:00
Chris Hennick
61d56318bf
style: Fix fmt and clippy warnings
2024-05-06 11:24:46 -07:00
Chris Hennick
51ef4f0f30
test: Update test_path_normalization to match corrected requirements
2024-05-06 11:17:21 -07:00
Chris Hennick
c2fe20741c
fix: version_needed was wrong when e.g. cfg(bzip2) but current file wasn't bzip2 ( #100 )
2024-05-06 11:16:16 -07:00
Chris Hennick
e1ef3fc65c
fix: file paths shouldn't start with slashes ( #102 )
2024-05-06 10:52:52 -07:00
Johannes Löthberg
97ddf84546
Don't try to encrypt directories
...
Not overriding this works fine for ZipCrypto since it doesn't need to
write any extra data, but AES encrypted files need to store more
metadata even for zero-byte files.
Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
2024-05-06 16:37:05 +02:00
Johannes Löthberg
d824fc2088
Make crypto validate
methods return ZipError when signifying invalid passwords
...
Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
2024-05-06 16:37:05 +02:00
Johannes Löthberg
d096e4dbf1
Add support for writing AES-encrypted files
...
Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
2024-05-06 16:37:05 +02:00
Johannes Löthberg
80dc8f2484
Add compression method to AES info
...
Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
2024-05-06 16:37:05 +02:00
Johannes Löthberg
a17578990b
Add AesWriter
...
Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
2024-05-06 16:37:05 +02:00
Johannes Löthberg
7c1e21403f
Wrap AesCtrZipKeyStream in inner Cipher enum
...
Boxing it as we were doing previously lead to the writer not being Send
anymore.
Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
2024-05-06 16:37:05 +02:00
Chris Hennick
d629b364e8
Merge pull request #98 from zip-rs/finish_owned
...
refactor: Make `ZipWriter::finish()` consume the `ZipWriter`
2024-05-06 06:17:13 +00:00
Chris Hennick
52375437dc
fix: Process ZIP files with up to a 65,978-byte comment ( https://github.com/zip-rs/zip-old/issues/183 )
2024-05-05 19:48:32 -07:00
Chris Hennick
84aa6e8f11
refactor: Make ZipWriter::finish()
consume the ZipWriter
2024-05-05 18:55:48 -07:00
Chris Hennick
a8ec016b51
style: cargo fmt --all
2024-05-05 18:43:40 -07:00
Chris Hennick
b3f9170f23
chore: Add #![allow(unexpected_cfgs)]
in nightly
2024-05-05 18:42:49 -07:00
Chris Hennick
aa890fa634
feat: Add method decompressed_size()
so non-recursive ZIP bombs can be detected
2024-05-05 18:28:17 -07:00
Chris Hennick
629707c060
Merge pull request #95 from zip-rs/speedup_path_to_string
...
perf: Speedup path_to_string when path is already in the correct format
2024-05-04 00:57:25 +00:00
Chris Hennick
1b2c42b199
style: cargo fmt --all
2024-05-03 15:18:31 -07:00
Chris Hennick
74e76a94ca
chore: Refactor: can short-circuit handling of paths that start with MAIN_SEPARATOR, no matter what MAIN_SEPARATOR is
2024-05-03 15:01:43 -07:00
Chris Hennick
2adbbccb82
perf: Quick filter for paths that contain "/../" or "/./" or start with "./" or "../"
2024-05-03 14:59:35 -07:00
Chris Hennick
0fe12b2ec9
chore: Bug fix: non-canonical path detection when MAIN_SEPARATOR is not slash or occurs twice in a row
2024-05-03 14:34:05 -07:00
Chris Hennick
5cd448802f
chore: Bug fix: must recreate if . or .. is a path element
2024-05-03 14:31:32 -07:00
Chris Hennick
001967186a
perf: Fast handling for separator-free paths
2024-05-03 14:28:14 -07:00
Chris Hennick
6184232e19
perf: Speed up logic if main separator isn't '/'
2024-05-03 14:11:03 -07:00
Chris Hennick
22e8fdbf58
chore: Bug fix
2024-05-03 14:06:48 -07:00
Chris Hennick
753eedb3a7
perf: Drop normalized_components
slightly sooner when not using it
2024-05-03 14:06:29 -07:00
Chris Hennick
efbea6f747
perf: Speed up path_to_string
in cases where the path is already in the proper format
2024-05-03 14:05:39 -07:00
Chris Hennick
a86a72fdc6
chore: Fix conflicts with other recently-merged PRs
2024-05-03 13:24:47 -04:00
Chris Hennick
20bfcd960c
style: fix a cargo fmt check
2024-05-03 13:24:15 -04:00
Chris Hennick
875ee30f91
style: Fix a Clippy warning in write.rs
2024-05-03 13:24:15 -04:00
Chris Hennick
d98772e633
style: Fix a Clippy warning in read.rs
2024-05-03 13:24:15 -04:00
Danny McClanahan
d1695053f5
use indexmap
2024-05-03 13:24:11 -04:00
Chris Hennick
1d1d9a631f
Merge branch 'master' into no-byte-order-a
2024-05-02 22:22:42 -07:00
Chris Hennick
3cf7a520e0
chore: Update due to merge of #82
2024-05-02 17:55:13 -07:00