interface SigningAlgorithm {
    hash?: DigestAlgorithm;
    name: AlgorithmName;
    saltLength?: number;
}

Properties

Digest algorithm. It's necessary for "RSA-PSS", "ECDSA", and "HMAC"

saltLength?: number

Salt length, necessary for "RSA-PSS".