pub trait KeyType {
    fn len(&self) -> usize;
}
Expand description

The length of the OKM (Output Keying Material) for a Prk::expand() call.

Required Methods

The length that Prk::expand() should expand its input to.

Implementors