Trait crypto_common::KeyInit
source · [−]pub trait KeyInit: KeySizeUser + Sized {
fn new(key: &Key<Self>) -> Self;
fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength> { ... }
}
Expand description
Types which can be initialized from key.
Required Methods
Provided Methods
fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength>
fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength>
Create new value from variable size key.