add ctime and size function to IndexFile trait

Signed-off-by: Hannes Laimer <h.laimer@proxmox.com>
This commit is contained in:
Hannes Laimer
2021-04-29 13:00:14 +02:00
committed by Wolfgang Bumiller
parent d1bee4344d
commit f0d23e5370
3 changed files with 18 additions and 0 deletions

View File

@ -193,6 +193,14 @@ impl IndexFile for FixedIndexReader {
})
}
fn index_ctime(&self) -> i64 {
self.ctime
}
fn index_size(&self) -> usize {
self.size as usize
}
fn compute_csum(&self) -> ([u8; 32], u64) {
let mut csum = openssl::sha::Sha256::new();
let mut chunk_end = 0;