Interface PublicKeyInput

interface PublicKeyInput {
    encoding?: string;
    format?: Crypto.KeyFormat;
    key: string | Buffer;
    type?: "pkcs1" | "spki";
}

Hierarchy (view full)

Properties

encoding?: string
format?: Crypto.KeyFormat
key: string | Buffer
type?: "pkcs1" | "spki"