Interface LocalKeyManagerGenerateKeyParams

The LocalKeyManagerGenerateKeyParams interface defines the algorithm-specific parameters that should be passed into the LocalKeyManager.generateKey() method when generating a key in the local KMS.

interface LocalKeyManagerGenerateKeyParams {
    algorithm: "Ed25519" | "secp256k1" | "secp256r1";
}

Hierarchy (view full)

Properties

Properties

algorithm: "Ed25519" | "secp256k1" | "secp256r1"

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

  • "Ed25519"
  • "secp256k1"