Type Alias SigningOptions
SigningOptions:
| { type: "Schnorr"; rng: RandomNumberGenerator }
| { type: "Ssh"; namespace: string; hashAlg: "sha256" | "sha512" }
Type Declaration
- { type: "Schnorr"; rng: RandomNumberGenerator }
type: "Schnorr"
rng: RandomNumberGenerator
- { type: "Ssh"; namespace: string; hashAlg: "sha256" | "sha512" }
type: "Ssh"
namespace: string
hashAlg: "sha256" | "sha512"
Options for configuring signature creation.
Different signature schemes may require specific options:
Other signature types like ECDSA, Ed25519, Sr25519, and ML-DSA don't require options.