pub trait KeyedDigest: Digest {
    type Key;

    // Required method
    fn with_key(key: Self::Key) -> Self;
}

Required Associated Types§

Required Methods§

source

fn with_key(key: Self::Key) -> Self

Implementors§