Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
interface DSAKeyPairOptions
import { type DSAKeyPairOptions } from "https://deno.land/std@0.173.0/node/internal/crypto/keygen.ts";

Type Parameters

PubF extends KeyFormat
PrivF extends KeyFormat

Properties

modulusLength: number

Key size in bits

divisorLength: number

Size of q in bits

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