Skip to main content
Go to Latest
interface RSAPSSKeyPairOptions
Re-export
import { type RSAPSSKeyPairOptions } from "https://deno.land/std@0.158.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

optional
hashAlgorithm: string

Name of the message digest

optional
mgf1HashAlgorithm: string

Name of the message digest used by MGF1

optional
saltLength: string

Minimal salt length in bytes

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