CryptoTls12Prf import { CryptoTls12Prf } from "destack:crypto/binding"; TLS 1.2 PRF derivation. export struct CryptoTls12Prf<'a> { digest: CryptoDigestAlgorithm; secret: &'a readonly [uint8]; label: &'a readonly [uint8]; seed: &'a readonly [uint8]; } language/library/src/crypto/binding/kdf.ds:125:134 Members digest: CryptoDigestAlgorithm Digest algorithm. secret: &'a readonly [uint8] Secret bytes. label: &'a readonly [uint8] Label bytes. seed: &'a readonly [uint8] Seed bytes.