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