pub trait ReversibleKeyGenerator: KeyGenerator {
    type ReversibleHasher;

    fn decode_final_key(
        key_material: &[u8]
    ) -> Result<(Self::Key, &[u8]), Error>; }
Expand description

A trait that indicates the hashers for the keys generated are all reversible.

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§