[][src]Trait hpke::kdf::Kdf

pub trait Kdf {
    type HashImpl: Digest + Input + BlockInput + FixedOutput + Reset + Default + Clone;

    const KDF_ID: u16;
}

Represents key derivation functionality

Associated Types

type HashImpl: Digest + Input + BlockInput + FixedOutput + Reset + Default + Clone

The underlying hash function

Loading content...

Associated Constants

const KDF_ID: u16

The algorithm identifier for a KDF implementation

Loading content...

Implementors

impl Kdf for HkdfSha256[src]

impl Kdf for HkdfSha384[src]

impl Kdf for HkdfSha512[src]

Loading content...