Skip to main content
Module

x/iron/src/types.ts>GenerateKeyOptions

A cryptographic utility for sealing a JSON object using symmetric key encryption with message integrity verification.
Go to Latest
type alias GenerateKeyOptions
import { type GenerateKeyOptions } from "https://deno.land/x/iron@v1.1.1/src/types.ts";

generateKey() method options.

definition: Pick<SealOptionsSub, "algorithm" | "iterations" | "minPasswordlength"> & { saltBits?: number | undefined; salt?: string | undefined; iv?: Uint8Array | undefined; hmac?: boolean | undefined; }