From ebb9540ac2e8af3e86ccbd88bcd74178faa2c1e6 Mon Sep 17 00:00:00 2001 From: Jochen Hoenicke Date: Wed, 1 Nov 2017 22:18:09 +0100 Subject: [PATCH] Added unit tests for sign/verifymessage bech32 --- .../test_msg_signmessage_segwit_native.py | 58 +++++++++++ .../test_msg_verifymessage_segwit_native.py | 98 +++++++++++++++++++ 2 files changed, 156 insertions(+) create mode 100644 tests/device_tests/test_msg_signmessage_segwit_native.py create mode 100644 tests/device_tests/test_msg_verifymessage_segwit_native.py diff --git a/tests/device_tests/test_msg_signmessage_segwit_native.py b/tests/device_tests/test_msg_signmessage_segwit_native.py new file mode 100644 index 0000000..9a082ba --- /dev/null +++ b/tests/device_tests/test_msg_signmessage_segwit_native.py @@ -0,0 +1,58 @@ +# This file is part of the TREZOR project. +# +# Copyright (C) 2012-2016 Marek Palatinus +# Copyright (C) 2012-2016 Pavol Rusnak +# +# This library is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this library. If not, see . + +import unittest +import common +import binascii + +import trezorlib.types_pb2 as proto_types + + +class TestMsgSignmessage(common.TrezorTest): + + def test_sign(self): + self.setup_mnemonic_nopin_nopassphrase() + sig = self.client.sign_message('Bitcoin', [0], "This is an example of a signed message.", script_type=proto_types.SPENDWITNESS) + self.assertEqual(sig.address, 'bc1qyjjkmdpu7metqt5r36jf872a34syws33s82q2j') + self.assertEqual(binascii.hexlify(sig.signature), b'289e23edf0e4e47ff1dec27f32cd78c50e74ef018ee8a6adf35ae17c7a9b0dd96f48b493fd7dbab03efb6f439c6383c9523b3bbc5f1a7d158a6af90ab154e9be80') + + def test_sign_testnet(self): + self.setup_mnemonic_nopin_nopassphrase() + sig = self.client.sign_message('Testnet', [0], "This is an example of a signed message.", script_type=proto_types.SPENDWITNESS) + self.assertEqual(sig.address, 'tb1qyjjkmdpu7metqt5r36jf872a34syws336p3n3p') + self.assertEqual(binascii.hexlify(sig.signature), b'289e23edf0e4e47ff1dec27f32cd78c50e74ef018ee8a6adf35ae17c7a9b0dd96f48b493fd7dbab03efb6f439c6383c9523b3bbc5f1a7d158a6af90ab154e9be80') + + def test_sign_long(self): + self.setup_mnemonic_nopin_nopassphrase() + sig = self.client.sign_message('Bitcoin', [0], "VeryLongMessage!" * 64, script_type=proto_types.SPENDWITNESS) + self.assertEqual(sig.address, 'bc1qyjjkmdpu7metqt5r36jf872a34syws33s82q2j') + self.assertEqual(binascii.hexlify(sig.signature), b'285ff795c29aef7538f8b3bdb2e8add0d0722ad630a140b6aefd504a5a895cbd867cbb00981afc50edd0398211e8d7c304bb8efa461181bc0afa67ea4a720a89ed') + + def test_sign_utf(self): + self.setup_mnemonic_nopin_nopassphrase() + + words_nfkd = u'Pr\u030ci\u0301s\u030cerne\u030c z\u030clut\u030couc\u030cky\u0301 ku\u030an\u030c u\u0301pe\u030cl d\u030ca\u0301belske\u0301 o\u0301dy za\u0301ker\u030cny\u0301 uc\u030cen\u030c be\u030cz\u030ci\u0301 pode\u0301l zo\u0301ny u\u0301lu\u030a' + words_nfc = u'P\u0159\xed\u0161ern\u011b \u017elu\u0165ou\u010dk\xfd k\u016f\u0148 \xfap\u011bl \u010f\xe1belsk\xe9 \xf3dy z\xe1ke\u0159n\xfd u\u010de\u0148 b\u011b\u017e\xed pod\xe9l z\xf3ny \xfal\u016f' + + sig_nfkd = self.client.sign_message('Bitcoin', [0], words_nfkd, script_type=proto_types.SPENDWITNESS) + self.assertEqual(sig_nfkd.address, 'bc1qyjjkmdpu7metqt5r36jf872a34syws33s82q2j') + self.assertEqual(binascii.hexlify(sig_nfkd.signature), b'28d0ec02ed8da8df23e7fe9e680e7867cc290312fe1c970749d8306ddad1a1eda41c6a771b13d495dd225b13b0a9d0f915a984ee3d0703f92287bf8009fbb9f7d6') + + sig_nfc = self.client.sign_message('Bitcoin', [0], words_nfc, script_type=proto_types.SPENDWITNESS) + self.assertEqual(sig_nfc.address, 'bc1qyjjkmdpu7metqt5r36jf872a34syws33s82q2j') + self.assertEqual(binascii.hexlify(sig_nfc.signature), b'28d0ec02ed8da8df23e7fe9e680e7867cc290312fe1c970749d8306ddad1a1eda41c6a771b13d495dd225b13b0a9d0f915a984ee3d0703f92287bf8009fbb9f7d6') diff --git a/tests/device_tests/test_msg_verifymessage_segwit_native.py b/tests/device_tests/test_msg_verifymessage_segwit_native.py new file mode 100644 index 0000000..d373db3 --- /dev/null +++ b/tests/device_tests/test_msg_verifymessage_segwit_native.py @@ -0,0 +1,98 @@ +# This file is part of the TREZOR project. +# +# Copyright (C) 2012-2016 Marek Palatinus +# Copyright (C) 2012-2016 Pavol Rusnak +# +# This library is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this library. If not, see . + +import unittest +import common +import binascii +import base64 + + +class TestMsgVerifymessageSegwit(common.TrezorTest): + + def test_message_long(self): + self.setup_mnemonic_nopin_nopassphrase() + ret = self.client.verify_message( + 'Bitcoin', + 'bc1qyjjkmdpu7metqt5r36jf872a34syws33s82q2j', + binascii.unhexlify('285ff795c29aef7538f8b3bdb2e8add0d0722ad630a140b6aefd504a5a895cbd867cbb00981afc50edd0398211e8d7c304bb8efa461181bc0afa67ea4a720a89ed'), + "VeryLongMessage!" * 64 + ) + self.assertTrue(ret) + + def test_message_testnet(self): + self.setup_mnemonic_nopin_nopassphrase() + ret = self.client.verify_message( + 'Testnet', + 'tb1qyjjkmdpu7metqt5r36jf872a34syws336p3n3p', + binascii.unhexlify('289e23edf0e4e47ff1dec27f32cd78c50e74ef018ee8a6adf35ae17c7a9b0dd96f48b493fd7dbab03efb6f439c6383c9523b3bbc5f1a7d158a6af90ab154e9be80'), + 'This is an example of a signed message.' + ) + self.assertTrue(ret) + + def test_message_verify(self): + self.setup_mnemonic_nopin_nopassphrase() + + # trezor pubkey - OK + res = self.client.verify_message( + 'Bitcoin', + 'bc1qyjjkmdpu7metqt5r36jf872a34syws33s82q2j', + binascii.unhexlify('289e23edf0e4e47ff1dec27f32cd78c50e74ef018ee8a6adf35ae17c7a9b0dd96f48b493fd7dbab03efb6f439c6383c9523b3bbc5f1a7d158a6af90ab154e9be80'), + 'This is an example of a signed message.' + ) + self.assertTrue(res) + + # trezor pubkey - FAIL - wrong sig + res = self.client.verify_message( + 'Bitcoin', + 'bc1qyjjkmdpu7metqt5r36jf872a34syws33s82q2j', + binascii.unhexlify('289e23edf0e4e47ff1dec27f32cd78c50e74ef018ee8a6adf35ae17c7a9b0dd96f48b493fd7dbab03efb6f439c6383c9523b3bbc5f1a7d158a6af90ab154e9be00'), + 'This is an example of a signed message.' + ) + self.assertFalse(res) + + # trezor pubkey - FAIL - wrong msg + res = self.client.verify_message( + 'Bitcoin', + 'bc1qyjjkmdpu7metqt5r36jf872a34syws33s82q2j', + binascii.unhexlify('289e23edf0e4e47ff1dec27f32cd78c50e74ef018ee8a6adf35ae17c7a9b0dd96f48b493fd7dbab03efb6f439c6383c9523b3bbc5f1a7d158a6af90ab154e9be80'), + 'This is an example of a signed message!' + ) + self.assertFalse(res) + + def test_verify_utf(self): + self.setup_mnemonic_nopin_nopassphrase() + + words_nfkd = u'Pr\u030ci\u0301s\u030cerne\u030c z\u030clut\u030couc\u030cky\u0301 ku\u030an\u030c u\u0301pe\u030cl d\u030ca\u0301belske\u0301 o\u0301dy za\u0301ker\u030cny\u0301 uc\u030cen\u030c be\u030cz\u030ci\u0301 pode\u0301l zo\u0301ny u\u0301lu\u030a' + words_nfc = u'P\u0159\xed\u0161ern\u011b \u017elu\u0165ou\u010dk\xfd k\u016f\u0148 \xfap\u011bl \u010f\xe1belsk\xe9 \xf3dy z\xe1ke\u0159n\xfd u\u010de\u0148 b\u011b\u017e\xed pod\xe9l z\xf3ny \xfal\u016f' + + res_nfkd = self.client.verify_message( + 'Bitcoin', + 'bc1qyjjkmdpu7metqt5r36jf872a34syws33s82q2j', + binascii.unhexlify('28d0ec02ed8da8df23e7fe9e680e7867cc290312fe1c970749d8306ddad1a1eda41c6a771b13d495dd225b13b0a9d0f915a984ee3d0703f92287bf8009fbb9f7d6'), + words_nfkd + ) + + res_nfc = self.client.verify_message( + 'Bitcoin', + 'bc1qyjjkmdpu7metqt5r36jf872a34syws33s82q2j', + binascii.unhexlify('28d0ec02ed8da8df23e7fe9e680e7867cc290312fe1c970749d8306ddad1a1eda41c6a771b13d495dd225b13b0a9d0f915a984ee3d0703f92287bf8009fbb9f7d6'), + words_nfc + ) + + self.assertTrue(res_nfkd) + self.assertTrue(res_nfc)