Add crc32 accessor for ZipFile
This commit is contained in:
parent
d95c925ac2
commit
064b21b685
1 changed files with 4 additions and 0 deletions
|
@ -304,6 +304,10 @@ impl<'a> ZipFile<'a> {
|
||||||
pub fn last_modified(&self) -> ::time::Tm {
|
pub fn last_modified(&self) -> ::time::Tm {
|
||||||
self.data.last_modified_time
|
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> {
|
impl<'a> Read for ZipFile<'a> {
|
||||||
|
|
Loading…
Add table
Reference in a new issue