diff --git a/src/read.rs b/src/read.rs index 0c5a3e96..57641abd 100644 --- a/src/read.rs +++ b/src/read.rs @@ -338,6 +338,10 @@ impl<'a> ZipFile<'a> { _ => None, } } + /// Get the CRC32 hash of the original file + pub fn crc32(&self) -> u32 { + self.data.crc32 + } } impl<'a> Read for ZipFile<'a> {