2016-05-06 11:23:48 +02:00
|
|
|
#!/usr/bin/env python3
|
2016-05-05 12:54:05 +02:00
|
|
|
# Copyright (c) 2016 The Bitcoin Core developers
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2019-01-07 10:55:35 +01:00
|
|
|
"""Test RPC commands for signing and verifying messages."""
|
2016-05-05 12:54:05 +02:00
|
|
|
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
|
|
|
|
class SignMessagesTest(BitcoinTestFramework):
|
|
|
|
|
2016-05-20 15:16:51 +02:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
|
|
self.setup_clean_chain = True
|
|
|
|
self.num_nodes = 1
|
2016-05-05 12:54:05 +02:00
|
|
|
|
|
|
|
def run_test(self):
|
|
|
|
message = 'This is just a test message'
|
|
|
|
|
|
|
|
# Test the signing with a privkey
|
2017-12-21 20:37:17 +01:00
|
|
|
privKey = "cU4zhap7nPJAWeMFu4j6jLrfPmqakDAzy8zn8Fhb3oEevdm4e5Lc"
|
|
|
|
address = "yeMpGzMj3rhtnz48XsfpB8itPHhHtgxLc3"
|
2016-05-05 12:54:05 +02:00
|
|
|
signature = self.nodes[0].signmessagewithprivkey(privKey, message)
|
|
|
|
|
|
|
|
# Verify the message
|
|
|
|
assert(self.nodes[0].verifymessage(address, signature, message))
|
|
|
|
|
|
|
|
# Test the signing with an address with wallet
|
|
|
|
address = self.nodes[0].getnewaddress()
|
|
|
|
signature = self.nodes[0].signmessage(address, message)
|
|
|
|
|
|
|
|
# Verify the message
|
|
|
|
assert(self.nodes[0].verifymessage(address, signature, message))
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
SignMessagesTest().main()
|