menu
CryptoAgreementHkdf
import { CryptoAgreementHkdf } from "destack:crypto/binding";
Key-agreement HKDF derivation.
1export struct CryptoAgreementHkdf<'a> {2 algorithm: CryptoKeyAgreementAlgorithm;3 digest: CryptoDigestAlgorithm;4 salt: &'a readonly [uint8];5 info: &'a readonly [uint8];6}Members
algorithm: CryptoKeyAgreementAlgorithmKey-agreement algorithm.
digest: CryptoDigestAlgorithmDigest algorithm used by the KDF stage.
salt: &'a readonly [uint8]KDF salt bytes.
info: &'a readonly [uint8]KDF context info bytes.