validateAndGetSecp256k1Key static method

IPublicKey validateAndGetSecp256k1Key(
  1. List<int> pubKey
)

Validate and get a secp256k1 public key.

Implementation

static IPublicKey validateAndGetSecp256k1Key(List<int> pubKey) {
  return _validateAndGetGenericKey(pubKey, EllipticCurveTypes.secp256k1);
}