Trait digest::InnerInit

source ·
pub trait InnerInit: Sized + InnerUser {
    // Required method
    fn inner_init(inner: Self::Inner) -> Self;
}
Expand description

Types which can be initialized from another type (usually block ciphers).

Usually used for initializing types from block ciphers.

Required Methods§

source

fn inner_init(inner: Self::Inner) -> Self

Initialize value from the inner.

Object Safety§

This trait is not object safe.

Implementors§