pub trait DynFsVerityDigest: DynDigest + Write {
    // Required method
    fn inner_hash_algorithm(&self) -> InnerHashAlgorithm;
}
Expand description

For trait objects of FsVerityDigest, when the inner hash is not statically known

Required Methods§

Implementors§

source§

impl<D: InnerHash + 'static, S: AsRef<[u8]> + Clone + Default + 'static> DynFsVerityDigest for FsVerityDigest<D, S>