Skip to main content
Latest
function generateSecret
import { generateSecret } from "https://deno.land/x/kilat@1.2.0/deps.ts";

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

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

Examples

Usage

const secret = await jose.generateSecret('HS256')
console.log(secret)

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<KeyLike | Uint8Array>