toVerifyKey method
Converts the Nist256p1Signer to a Nist256p1Verifier for verification purposes.
Returns:
- A Nist256p1Verifier representing the verification key.
Implementation
Nist256p1Verifier toVerifyKey() {
return Nist256p1Verifier.fromKeyBytes(
_ecdsaSigningKey.privateKey.publicKey.toBytes());
}