Merge remote-tracking branch 'reduf/feature/add-encrypted-get-function' into oldpr368

This commit is contained in:
Chris Hennick 2024-05-01 14:09:41 -07:00
commit 0ed3184708
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -1032,6 +1032,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