Skip to main content
Latest
function jose.generateSecret
import { jose } from "https://deno.land/x/jwe_cookie_map@v1.0.1/src/deps.ts";
const { generateSecret } = jose;

Generates a symmetric secret key for a given JWA algorithm identifier.

Note: Under Web Crypto API runtime the secret key is generated with extractable set to false by default.

Type Parameters

optional
T extends KeyLike = KeyLike

Parameters

alg: string

JWA Algorithm Identifier to be used with the generated secret.

optional
options: GenerateSecretOptions

Additional options passed down to the secret generation.

Returns

Promise<T | Uint8Array>