pub enum FsVerityHasher {
    Sha256(FsVerityHasherOptions),
    Sha512(FsVerityHasherOptions),
}
Expand description

FsVerityHasher is used by fsverity to construct merkle trees for verity-enabled files. FsVerityHasher is parameterized by a salt and a block size.

Variants§

Implementations§

source§

impl FsVerityHasher

source

pub fn block_size(&self) -> usize

source

pub fn hash_size(&self) -> usize

source

pub fn hash_block(&self, block: &[u8]) -> Vec<u8>

Computes the MerkleTree digest from a block of data.

A MerkleTree digest is a hash of a block of data. The block will be zero filled if its len is less than the block_size, except for when the first data block is completely empty. If salt.len() > 0, we prepend the block with the salt which itself is zero filled up to the padding.

§Panics

Panics if block.len() exceeds self.block_size().

source

pub fn hash_hashes(&self, hashes: &[Vec<u8>]) -> Vec<u8>

Computes a MerkleTree digest from a block of hashes.

Like hash_block, hash_hashes zero fills incomplete buffers and prepends the digests with a salt, which is zero filled up to the padding.

§Panics

Panics if any of the following conditions are met:

  • hashes.len() is 0
  • hashes.len() > self.block_size() / digest length

Trait Implementations§

source§

impl Clone for FsVerityHasher

source§

fn clone(&self) -> FsVerityHasher

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FsVerityHasher

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.