Interface VerifyPublicKeyInput

interface VerifyPublicKeyInput {
    dsaEncoding?: DSAEncoding;
    encoding?: string;
    format?: Crypto.KeyFormat;
    key: string | Buffer;
    padding?: number;
    saltLength?: number;
    type?: "pkcs1" | "spki";
}

Hierarchy (view full)

Properties

dsaEncoding?: DSAEncoding
encoding?: string
format?: Crypto.KeyFormat
key: string | Buffer
padding?: number

crypto.constants.RSA_PKCS1_PADDING

saltLength?: number
type?: "pkcs1" | "spki"