menu
CryptoHmacKeyShape
import { CryptoHmacKeyShape } from "destack:crypto/binding";
HMAC key shape.
1export struct CryptoHmacKeyShape {2 algorithm: "hmac";3 sizeBits: uint32;4 digest: CryptoDigestAlgorithm;5}Members
algorithm: "hmac"Shape discriminator.
sizeBits: uint32Key size in bits.
digest: CryptoDigestAlgorithmDefault digest algorithm.