Interface EdDsaGenerateKeyParams

The EdDsaGenerateKeyParams interface defines the algorithm-specific parameters that should be passed into the generateKey() method when using the EdDSA algorithm.

interface EdDsaGenerateKeyParams {
    algorithm: "Ed25519";
}

Hierarchy (view full)

Properties

Properties

algorithm: "Ed25519"

A string defining the type of key to generate. The value must be one of the following:

  • "Ed25519": EdDSA using the Ed25519 curve.