Trait crypto_common::KeySizeUser[][src]

pub trait KeySizeUser {
    type KeySize: ArrayLength<u8> + 'static;
}
Expand description

Types which use key for initialization.

Generally it’s used indirectly via KeyInit or KeyIvInit.

Associated Types

Key size in bytes.

Implementors