pub trait PseudoRandomFunctionKey {
    type KeyHandle;

    fn key_handle(&self) -> &Self::KeyHandle;
}
Expand description

Defines how a PseudoRandomFunction handles a key

Required Associated Types

The key handle type this returns

Required Methods

Returns the key handle held by this instance

Implementors