The result of a signed message verification. Message verification takes as an input: ‐ address (with whose private key the message is supposed to have been signed) ‐ signature ‐ message
Synopsis
Declared in <common/signmessage.h>
enum class MessageVerificationResult : int;
Members
Name |
Description |
|
The provided address is invalid. |
|
The provided address is valid but does not refer to a public key. |
|
The provided signature couldn't be parsed (maybe invalid base64). |
|
A public key could not be recovered from the provided signature and message. |
|
The message was not signed with the private key of the provided address. |
|
The message verification was successful. |
Non-Member Functions
Name |
Description |
Verify a signed message. |
Created with MrDocs