LCOV - code coverage report
Current view: top level - src/rpc - signmessage.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 94.1 % 68 64
Test Date: 2025-06-16 04:13:27 Functions: 100.0 % 5 5
Branches: 49.5 % 216 107

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2010 Satoshi Nakamoto
       2                 :             : // Copyright (c) 2009-2022 The Bitcoin Core developers
       3                 :             : // Distributed under the MIT software license, see the accompanying
       4                 :             : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       5                 :             : 
       6                 :             : #include <common/signmessage.h>
       7                 :             : #include <key.h>
       8                 :             : #include <key_io.h>
       9                 :             : #include <rpc/protocol.h>
      10                 :             : #include <rpc/request.h>
      11                 :             : #include <rpc/server.h>
      12                 :             : #include <rpc/util.h>
      13                 :             : #include <univalue.h>
      14                 :             : 
      15                 :             : #include <string>
      16                 :             : 
      17                 :         115 : static RPCHelpMan verifymessage()
      18                 :             : {
      19                 :         115 :     return RPCHelpMan{"verifymessage",
      20                 :             :         "Verify a signed message.",
      21                 :             :         {
      22         [ +  - ]:         115 :             {"address", RPCArg::Type::STR, RPCArg::Optional::NO, "The bitcoin address to use for the signature."},
      23         [ +  - ]:         115 :             {"signature", RPCArg::Type::STR, RPCArg::Optional::NO, "The signature provided by the signer in base 64 encoding (see signmessage)."},
      24         [ +  - ]:         115 :             {"message", RPCArg::Type::STR, RPCArg::Optional::NO, "The message that was signed."},
      25                 :             :         },
      26                 :           0 :         RPCResult{
      27                 :             :             RPCResult::Type::BOOL, "", "If the signature is verified or not."
      28   [ +  -  +  -  :         230 :         },
                   +  - ]
      29                 :         115 :         RPCExamples{
      30                 :             :             "\nUnlock the wallet for 30 seconds\n"
      31   [ +  -  +  -  :         230 :             + HelpExampleCli("walletpassphrase", "\"mypassphrase\" 30") +
             +  -  +  - ]
      32                 :         115 :             "\nCreate the signature\n"
      33   [ +  -  +  -  :         460 :             + HelpExampleCli("signmessage", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\" \"my message\"") +
             +  -  +  - ]
      34                 :         115 :             "\nVerify the signature\n"
      35   [ +  -  +  -  :         460 :             + HelpExampleCli("verifymessage", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\" \"signature\" \"my message\"") +
             +  -  +  - ]
      36                 :         115 :             "\nAs a JSON-RPC call\n"
      37   [ +  -  +  -  :         460 :             + HelpExampleRpc("verifymessage", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\", \"signature\", \"my message\"")
             +  -  +  - ]
      38         [ +  - ]:         115 :         },
      39                 :          55 :         [&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue
      40                 :             :         {
      41                 :          55 :             std::string strAddress = self.Arg<std::string>("address");
      42         [ +  - ]:          55 :             std::string strSign = self.Arg<std::string>("signature");
      43         [ +  - ]:          55 :             std::string strMessage = self.Arg<std::string>("message");
      44                 :             : 
      45   [ +  -  +  +  :          55 :             switch (MessageVerify(strAddress, strSign, strMessage)) {
             +  +  +  - ]
      46                 :           8 :             case MessageVerificationResult::ERR_INVALID_ADDRESS:
      47   [ +  -  +  - ]:          16 :                 throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid address");
      48                 :           8 :             case MessageVerificationResult::ERR_ADDRESS_NO_KEY:
      49   [ +  -  +  - ]:          16 :                 throw JSONRPCError(RPC_TYPE_ERROR, "Address does not refer to key");
      50                 :           1 :             case MessageVerificationResult::ERR_MALFORMED_SIGNATURE:
      51   [ +  -  +  - ]:           2 :                 throw JSONRPCError(RPC_TYPE_ERROR, "Malformed base64 encoding");
      52                 :          37 :             case MessageVerificationResult::ERR_PUBKEY_NOT_RECOVERED:
      53                 :          37 :             case MessageVerificationResult::ERR_NOT_SIGNED:
      54         [ +  - ]:          37 :                 return false;
      55                 :           1 :             case MessageVerificationResult::OK:
      56         [ +  - ]:           1 :                 return true;
      57                 :             :             }
      58                 :             : 
      59         [ #  # ]:           0 :             return false;
      60                 :          72 :         },
      61   [ +  -  +  -  :        1725 :     };
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
             -  +  +  -  
                      - ]
      62   [ +  -  +  -  :         805 : }
          +  -  +  -  -  
                      - ]
      63                 :             : 
      64                 :         954 : static RPCHelpMan signmessagewithprivkey()
      65                 :             : {
      66                 :         954 :     return RPCHelpMan{
      67                 :             :         "signmessagewithprivkey",
      68                 :             :         "Sign a message with the private key of an address\n",
      69                 :             :         {
      70         [ +  - ]:         954 :             {"privkey", RPCArg::Type::STR, RPCArg::Optional::NO, "The private key to sign the message with."},
      71         [ +  - ]:         954 :             {"message", RPCArg::Type::STR, RPCArg::Optional::NO, "The message to create a signature of."},
      72                 :             :         },
      73                 :           0 :         RPCResult{
      74                 :             :             RPCResult::Type::STR, "signature", "The signature of the message encoded in base 64"
      75   [ +  -  +  -  :        1908 :         },
                   +  - ]
      76                 :         954 :         RPCExamples{
      77                 :             :             "\nCreate the signature\n"
      78   [ +  -  +  -  :        1908 :             + HelpExampleCli("signmessagewithprivkey", "\"privkey\" \"my message\"") +
             +  -  +  - ]
      79                 :         954 :             "\nVerify the signature\n"
      80   [ +  -  +  -  :        3816 :             + HelpExampleCli("verifymessage", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\" \"signature\" \"my message\"") +
             +  -  +  - ]
      81                 :         954 :             "\nAs a JSON-RPC call\n"
      82   [ +  -  +  -  :        3816 :             + HelpExampleRpc("signmessagewithprivkey", "\"privkey\", \"my message\"")
             +  -  +  - ]
      83         [ +  - ]:         954 :         },
      84                 :         896 :         [&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue
      85                 :             :         {
      86                 :         896 :             std::string strPrivkey = request.params[0].get_str();
      87   [ +  -  +  -  :         896 :             std::string strMessage = request.params[1].get_str();
                   +  - ]
      88                 :             : 
      89         [ +  - ]:         896 :             CKey key = DecodeSecret(strPrivkey);
      90         [ +  + ]:         896 :             if (!key.IsValid()) {
      91   [ +  -  +  - ]:          30 :                 throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid private key");
      92                 :             :             }
      93                 :             : 
      94         [ +  - ]:         881 :             std::string signature;
      95                 :             : 
      96   [ +  -  -  + ]:         881 :             if (!MessageSign(key, strMessage, signature)) {
      97   [ #  #  #  # ]:           0 :                 throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Sign failed");
      98                 :             :             }
      99                 :             : 
     100         [ +  - ]:         881 :             return signature;
     101                 :         911 :         },
     102   [ +  -  +  -  :       11448 :     };
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  +  -  
                      - ]
     103   [ +  -  +  -  :        4770 : }
             +  -  -  - ]
     104                 :             : 
     105                 :          27 : void RegisterSignMessageRPCCommands(CRPCTable& t)
     106                 :             : {
     107                 :          27 :     static const CRPCCommand commands[]{
     108                 :             :         {"util", &verifymessage},
     109                 :             :         {"util", &signmessagewithprivkey},
     110   [ +  +  +  -  :          27 :     };
          +  -  +  -  +  
             -  +  -  -  
                      - ]
     111         [ +  + ]:          81 :     for (const auto& c : commands) {
     112                 :          54 :         t.appendCommand(c.name, &c);
     113                 :             :     }
     114                 :          27 : }
        

Generated by: LCOV version 2.0-1