Merge branch 'master' of git://github.com/efyang/zip-rs into efyang-master

This commit is contained in:
Mathijs van de Nes 2016-04-30 12:18:17 +02:00
commit 1d2b43b2c0

View file

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