SchnorrIdentity.fromKeyPair constructor
SchnorrIdentity.fromKeyPair(
- BinaryBlob publicKey,
- BinaryBlob privateKey
Implementation
factory SchnorrIdentity.fromKeyPair(
BinaryBlob publicKey,
BinaryBlob privateKey,
) {
return SchnorrIdentity(
SchnorrPublicKey.fromRaw(publicKey),
privateKey,
);
}