Merge branch 'efyang-master'

This commit is contained in:
Mathijs van de Nes 2016-04-30 12:18:58 +02:00
commit 18fb1fb0c0

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