fromKeyPair static method
Implementation
static Secp256k1KeyIdentity fromKeyPair(
BinaryBlob publicKey, BinaryBlob privateKey) {
return Secp256k1KeyIdentity(
Secp256k1PublicKey.fromRaw(publicKey), privateKey);
}
static Secp256k1KeyIdentity fromKeyPair(
BinaryBlob publicKey, BinaryBlob privateKey) {
return Secp256k1KeyIdentity(
Secp256k1PublicKey.fromRaw(publicKey), privateKey);
}