Type Alias MessageAuthenticationKey
MessageAuthenticationKey: JsonWebKey & {
crv?: undefined;
d?: undefined;
dp?: undefined;
dq?: undefined;
e?: undefined;
n?: undefined;
oth?: undefined;
p?: undefined;
q?: undefined;
qi?: undefined;
x?: undefined;
y?: undefined;
} & {
alg: "HS256";
k: string;
key_ops: readonly ("sign" | "verify")[];
kty: "oct";
use: "sig";
}
Symmetric HMAC-SHA-256 JWK used for message authentication operations.