Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/iron/mod.ts>GenerateKeyOptions

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

generateKey() method options.

Type Parameters

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