From b8bed607e35dd5842fa8329ce483ac065fe47add Mon Sep 17 00:00:00 2001 From: Laurent Dufresne Date: Wed, 10 May 2023 08:44:09 +0200 Subject: [PATCH] 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