Trait eth2_hashing::Sha256Context[][src]

pub trait Sha256Context {
    fn new() -> Self;
fn update(&mut self, bytes: &[u8]);
fn finalize(self) -> [u8; 32]; }
Expand description

Context trait for abstracting over implementation contexts.

Required methods

Implementations on Foreign Types

Implementors