Trait sha2_compress::Sha2

source ·
pub trait Sha2 {
    // Required method
    fn compress(&self, h1: &Self, h2: &Self) -> Self;
}

Required Methods§

source

fn compress(&self, h1: &Self, h2: &Self) -> Self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I: Item> Sha2 for Hash<I>