Added function to get if a file is encrypted or not

This commit is contained in:
Laurent Dufresne 2023-05-10 08:44:09 +02:00
parent 13a19f682f
commit b8bed607e3

View file

@ -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