ImportEcKeyInput
ECDSA variant of PublicKeyImportInput / PrivateKeyImportInput.
ts
interface ImportEcKeyInput {
readonly kind: ecdsa;
readonly curve: EcNamedCurve;
}Properties
readonlykind:ecdsa— Discriminant selecting ECDSA import.readonlycurve:EcNamedCurve— NIST curve the key belongs to. Required for EC import.