From 064b21b6857846bf10d49c9d0e2a332306632b21 Mon Sep 17 00:00:00 2001 From: Edward Yang Date: Fri, 29 Apr 2016 17:04:08 -0500 Subject: [PATCH] Add crc32 accessor for ZipFile --- src/read.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/read.rs b/src/read.rs index 9d676965..4a2eac2c 100644 --- a/src/read.rs +++ b/src/read.rs @@ -304,6 +304,10 @@ impl<'a> ZipFile<'a> { pub fn last_modified(&self) -> ::time::Tm { self.data.last_modified_time } + /// Get the CRC32 hash of the original file + pub fn crc32(&self) -> u32 { + self.data.crc32 + } } impl<'a> Read for ZipFile<'a> {