Skip to main content
Go to Latest
interface RSAKeyPairOptions
Re-export
import { type RSAKeyPairOptions } from "https://deno.land/std@0.166.0/node/crypto.ts";

Type Parameters

PubF extends KeyFormat
PrivF extends KeyFormat

Properties

modulusLength: number

Key size in bits

optional
publicExponent: number | undefined

Public exponent

publicKeyEncoding: { type: "pkcs1" | "spki"; format: PubF; }
privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & { type: "pkcs1" | "pkcs8"; }