menu

CryptoSp800108Counter

import { CryptoSp800108Counter } from "destack:crypto/binding";

SP 800-108 counter-mode derivation.

language/library/src/crypto/binding/kdf.ds:67:76
1export struct CryptoSp800108Counter<'a> {2    digest: CryptoDigestAlgorithm;3    key: &'a readonly [uint8];4    label: &'a readonly [uint8];5    context: &'a readonly [uint8];6}

Members

digest: CryptoDigestAlgorithm

Digest algorithm.

key: &'a readonly [uint8]

Secret key bytes.

label: &'a readonly [uint8]

Label bytes.

context: &'a readonly [uint8]

Context bytes.