fromDer static method

Secp256k1PublicKey fromDer(
  1. BinaryBlob derKey
)

Implementation

static Secp256k1PublicKey fromDer(BinaryBlob derKey) {
  return Secp256k1PublicKey(Secp256k1PublicKey.derDecode(derKey));
}