2018-06-21 14:28:34 +00:00
|
|
|
# This file is part of the Trezor project.
|
2017-07-25 17:29:28 +00:00
|
|
|
#
|
2019-05-29 16:44:09 +00:00
|
|
|
# Copyright (C) 2012-2019 SatoshiLabs and contributors
|
2017-07-25 17:29:28 +00:00
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
2018-06-21 14:28:34 +00:00
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# as published by the Free Software Foundation.
|
2017-07-25 17:29:28 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2018-06-21 14:28:34 +00:00
|
|
|
# You should have received a copy of the License along with this library.
|
|
|
|
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
|
|
|
|
|
2018-08-10 12:04:58 +00:00
|
|
|
from trezorlib import btc
|
2017-07-25 17:29:28 +00:00
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
|
2019-09-11 12:29:39 +00:00
|
|
|
class TestMsgVerifymessageSegwit:
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_message_long(self, client):
|
2018-08-10 12:04:58 +00:00
|
|
|
ret = btc.verify_message(
|
2019-08-27 14:58:59 +00:00
|
|
|
client,
|
2018-08-13 16:21:24 +00:00
|
|
|
"Bitcoin",
|
|
|
|
"3CwYaeWxhpXXiHue3ciQez1DLaTEAXcKa1",
|
2018-09-12 18:34:26 +00:00
|
|
|
bytes.fromhex(
|
2018-08-13 16:21:24 +00:00
|
|
|
"245ff795c29aef7538f8b3bdb2e8add0d0722ad630a140b6aefd504a5a895cbd867cbb00981afc50edd0398211e8d7c304bb8efa461181bc0afa67ea4a720a89ed"
|
|
|
|
),
|
|
|
|
"VeryLongMessage!" * 64,
|
2017-07-25 17:29:28 +00:00
|
|
|
)
|
2017-12-23 20:20:49 +00:00
|
|
|
assert ret is True
|
2017-07-25 17:29:28 +00:00
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_message_testnet(self, client):
|
2018-08-10 12:04:58 +00:00
|
|
|
ret = btc.verify_message(
|
2019-08-27 14:58:59 +00:00
|
|
|
client,
|
2018-08-13 16:21:24 +00:00
|
|
|
"Testnet",
|
|
|
|
"2N4VkePSzKH2sv5YBikLHGvzUYvfPxV6zS9",
|
2018-09-12 18:34:26 +00:00
|
|
|
bytes.fromhex(
|
2018-08-13 16:21:24 +00:00
|
|
|
"249e23edf0e4e47ff1dec27f32cd78c50e74ef018ee8a6adf35ae17c7a9b0dd96f48b493fd7dbab03efb6f439c6383c9523b3bbc5f1a7d158a6af90ab154e9be80"
|
|
|
|
),
|
|
|
|
"This is an example of a signed message.",
|
2018-08-10 13:24:21 +00:00
|
|
|
)
|
2017-12-23 20:20:49 +00:00
|
|
|
assert ret is True
|
2017-07-25 17:29:28 +00:00
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_message_verify(self, client):
|
2018-08-10 12:04:58 +00:00
|
|
|
res = btc.verify_message(
|
2019-08-27 14:58:59 +00:00
|
|
|
client,
|
2018-08-13 16:21:24 +00:00
|
|
|
"Bitcoin",
|
|
|
|
"3CwYaeWxhpXXiHue3ciQez1DLaTEAXcKa1",
|
2018-09-12 18:34:26 +00:00
|
|
|
bytes.fromhex(
|
2018-08-13 16:21:24 +00:00
|
|
|
"249e23edf0e4e47ff1dec27f32cd78c50e74ef018ee8a6adf35ae17c7a9b0dd96f48b493fd7dbab03efb6f439c6383c9523b3bbc5f1a7d158a6af90ab154e9be80"
|
|
|
|
),
|
|
|
|
"This is an example of a signed message.",
|
2018-08-10 13:24:21 +00:00
|
|
|
)
|
2017-12-23 20:20:49 +00:00
|
|
|
assert res is True
|
2017-07-25 17:29:28 +00:00
|
|
|
|
|
|
|
# trezor pubkey - FAIL - wrong sig
|
2018-08-10 12:04:58 +00:00
|
|
|
res = btc.verify_message(
|
2019-08-27 14:58:59 +00:00
|
|
|
client,
|
2018-08-13 16:21:24 +00:00
|
|
|
"Bitcoin",
|
|
|
|
"3CwYaeWxhpXXiHue3ciQez1DLaTEAXcKa1",
|
2018-09-12 18:34:26 +00:00
|
|
|
bytes.fromhex(
|
2018-08-13 16:21:24 +00:00
|
|
|
"249e23edf0e4e47ff1dec27f32cd78c50e74ef018ee8a6adf35ae17c7a9b0dd96f48b493fd7dbab03efb6f439c6383c9523b3bbc5f1a7d158a6af90ab154e9be00"
|
|
|
|
),
|
|
|
|
"This is an example of a signed message.",
|
2018-08-10 13:24:21 +00:00
|
|
|
)
|
2017-12-23 20:20:49 +00:00
|
|
|
assert res is False
|
2017-07-25 17:29:28 +00:00
|
|
|
|
|
|
|
# trezor pubkey - FAIL - wrong msg
|
2018-08-10 12:04:58 +00:00
|
|
|
res = btc.verify_message(
|
2019-08-27 14:58:59 +00:00
|
|
|
client,
|
2018-08-13 16:21:24 +00:00
|
|
|
"Bitcoin",
|
|
|
|
"3CwYaeWxhpXXiHue3ciQez1DLaTEAXcKa1",
|
2018-09-12 18:34:26 +00:00
|
|
|
bytes.fromhex(
|
2018-08-13 16:21:24 +00:00
|
|
|
"249e23edf0e4e47ff1dec27f32cd78c50e74ef018ee8a6adf35ae17c7a9b0dd96f48b493fd7dbab03efb6f439c6383c9523b3bbc5f1a7d158a6af90ab154e9be80"
|
|
|
|
),
|
|
|
|
"This is an example of a signed message!",
|
2018-08-10 13:24:21 +00:00
|
|
|
)
|
2017-12-23 20:20:49 +00:00
|
|
|
assert res is False
|
2017-07-25 17:29:28 +00:00
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_verify_utf(self, client):
|
2018-08-13 16:21:24 +00:00
|
|
|
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"
|
2017-07-25 17:29:28 +00:00
|
|
|
|
2018-08-10 12:04:58 +00:00
|
|
|
res_nfkd = btc.verify_message(
|
2019-08-27 14:58:59 +00:00
|
|
|
client,
|
2018-08-13 16:21:24 +00:00
|
|
|
"Bitcoin",
|
|
|
|
"3CwYaeWxhpXXiHue3ciQez1DLaTEAXcKa1",
|
2018-09-12 18:34:26 +00:00
|
|
|
bytes.fromhex(
|
2018-08-13 16:21:24 +00:00
|
|
|
"24d0ec02ed8da8df23e7fe9e680e7867cc290312fe1c970749d8306ddad1a1eda41c6a771b13d495dd225b13b0a9d0f915a984ee3d0703f92287bf8009fbb9f7d6"
|
|
|
|
),
|
|
|
|
words_nfkd,
|
2017-07-25 17:29:28 +00:00
|
|
|
)
|
|
|
|
|
2018-08-10 12:04:58 +00:00
|
|
|
res_nfc = btc.verify_message(
|
2019-08-27 14:58:59 +00:00
|
|
|
client,
|
2018-08-13 16:21:24 +00:00
|
|
|
"Bitcoin",
|
|
|
|
"3CwYaeWxhpXXiHue3ciQez1DLaTEAXcKa1",
|
2018-09-12 18:34:26 +00:00
|
|
|
bytes.fromhex(
|
2018-08-13 16:21:24 +00:00
|
|
|
"24d0ec02ed8da8df23e7fe9e680e7867cc290312fe1c970749d8306ddad1a1eda41c6a771b13d495dd225b13b0a9d0f915a984ee3d0703f92287bf8009fbb9f7d6"
|
|
|
|
),
|
|
|
|
words_nfc,
|
2017-07-25 17:29:28 +00:00
|
|
|
)
|
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
assert res_nfkd is True
|
|
|
|
assert res_nfc is True
|