2016-03-19 16:58:06 -03:00
|
|
|
#!/usr/bin/env python3
|
2021-07-28 07:57:16 -04:00
|
|
|
# Copyright (c) 2016-2021 The Bitcoin Core developers
|
2016-04-27 16:18:20 -03:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2021-08-05 17:31:12 -04:00
|
|
|
"""Test RPC commands for signing messages with private key."""
|
2016-04-27 16:18:20 -03:00
|
|
|
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2020-03-29 13:28:46 -03:00
|
|
|
from test_framework.util import (
|
|
|
|
assert_equal,
|
|
|
|
assert_raises_rpc_error,
|
|
|
|
)
|
2016-04-27 16:18:20 -03:00
|
|
|
|
2021-08-05 17:31:12 -04:00
|
|
|
class SignMessagesWithPrivTest(BitcoinTestFramework):
|
2017-06-09 18:21:21 -04:00
|
|
|
def set_test_params(self):
|
2016-05-14 08:01:31 -03:00
|
|
|
self.setup_clean_chain = True
|
|
|
|
self.num_nodes = 1
|
2018-09-09 14:32:37 -03:00
|
|
|
|
2016-04-27 16:18:20 -03:00
|
|
|
def run_test(self):
|
|
|
|
message = 'This is just a test message'
|
|
|
|
|
2017-09-05 13:55:37 -03:00
|
|
|
self.log.info('test signing with priv_key')
|
|
|
|
priv_key = 'cUeKHd5orzT3mz8P9pxyREHfsWtVfgsfDjiZZBcjUBAaGk1BTj7N'
|
2016-04-27 16:18:20 -03:00
|
|
|
address = 'mpLQjfK79b7CCV4VMJWEWAj5Mpx8Up5zxB'
|
2017-09-05 13:55:37 -03:00
|
|
|
expected_signature = 'INbVnW4e6PeRmsv2Qgu8NuopvrVjkcxob+sX8OcZG0SALhWybUjzMLPdAsXI46YZGb0KQTRii+wWIQzRpG/U+S0='
|
|
|
|
signature = self.nodes[0].signmessagewithprivkey(priv_key, message)
|
|
|
|
assert_equal(expected_signature, signature)
|
2019-02-19 19:43:44 -03:00
|
|
|
assert self.nodes[0].verifymessage(address, signature, message)
|
2016-04-27 16:18:20 -03:00
|
|
|
|
2020-03-29 13:28:46 -03:00
|
|
|
self.log.info('test parameter validity and error codes')
|
2021-08-05 17:31:12 -04:00
|
|
|
# signmessagewithprivkey has two required parameters
|
2020-03-29 13:28:46 -03:00
|
|
|
for num_params in [0, 1, 3, 4, 5]:
|
|
|
|
param_list = ["dummy"]*num_params
|
|
|
|
assert_raises_rpc_error(-1, "signmessagewithprivkey", self.nodes[0].signmessagewithprivkey, *param_list)
|
|
|
|
# verifymessage has three required parameters
|
|
|
|
for num_params in [0, 1, 2, 4, 5]:
|
|
|
|
param_list = ["dummy"]*num_params
|
|
|
|
assert_raises_rpc_error(-1, "verifymessage", self.nodes[0].verifymessage, *param_list)
|
|
|
|
# invalid key or address provided
|
|
|
|
assert_raises_rpc_error(-5, "Invalid private key", self.nodes[0].signmessagewithprivkey, "invalid_key", message)
|
|
|
|
assert_raises_rpc_error(-5, "Invalid address", self.nodes[0].verifymessage, "invalid_addr", signature, message)
|
|
|
|
# malformed signature provided
|
2021-08-05 17:31:12 -04:00
|
|
|
assert_raises_rpc_error(-3, "Malformed base64 encoding", self.nodes[0].verifymessage, 'mpLQjfK79b7CCV4VMJWEWAj5Mpx8Up5zxB', "invalid_sig", message)
|
2020-03-29 13:28:46 -03:00
|
|
|
|
2016-04-27 16:18:20 -03:00
|
|
|
if __name__ == '__main__':
|
2021-08-05 17:31:12 -04:00
|
|
|
SignMessagesWithPrivTest().main()
|