Trait PseudoRandomFunctionKey

Source
pub trait PseudoRandomFunctionKey {
    type KeyHandle;

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

Defines how a PseudoRandomFunction handles a key

Required Associated Types§

Source

type KeyHandle

The key handle type this returns

Required Methods§

Source

fn key_handle(&self) -> &Self::KeyHandle

Returns the key handle held by this instance

Implementors§