From b8bed607e35dd5842fa8329ce483ac065fe47add Mon Sep 17 00:00:00 2001 From: Laurent Dufresne Date: Wed, 10 May 2023 08:44:09 +0200 Subject: [PATCH 1/2] Added function to get if a file is encrypted or not --- src/read.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/read.rs b/src/read.rs index b702b4f2..75a35a61 100644 --- a/src/read.rs +++ b/src/read.rs @@ -917,6 +917,11 @@ impl<'a> ZipFile<'a> { self.data.compression_method } + /// Get if the files is encrypted or not + pub fn encrypted(&self) -> bool { + self.data.encrypted + } + /// Get the size of the file, in bytes, in the archive pub fn compressed_size(&self) -> u64 { self.data.compressed_size From 7645f09a3d092c829ab3d04af62fe747eb00af49 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 1 May 2024 14:13:50 -0700 Subject: [PATCH 2/2] doc: Fix an unresolved import --- src/read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/read.rs b/src/read.rs index 6f4ef99b..15ccb217 100644 --- a/src/read.rs +++ b/src/read.rs @@ -1003,7 +1003,7 @@ impl<'a> ZipFile<'a> { /// `foo/../bar` as `foo/bar` (instead of `bar`). Because of this, /// [`ZipFile::enclosed_name`] is the better option in most scenarios. /// - /// [`ParentDir`]: `Component::ParentDir` + /// [`ParentDir`]: `PathBuf::Component::ParentDir` pub fn mangled_name(&self) -> PathBuf { self.data.file_name_sanitized() }