2018-06-21 14:28:34 +00:00
|
|
|
# This file is part of the Trezor project.
|
2018-06-06 20:50:27 +00:00
|
|
|
#
|
2019-05-29 16:44:09 +00:00
|
|
|
# Copyright (C) 2012-2019 SatoshiLabs and contributors
|
2018-06-06 20:50:27 +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.
|
2018-06-06 20:50:27 +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-06-06 20:50:27 +00:00
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
from trezorlib import lisk, messages as proto
|
|
|
|
|
2018-06-06 20:50:27 +00:00
|
|
|
|
2019-08-22 16:47:01 +00:00
|
|
|
@pytest.mark.altcoin
|
2018-06-06 20:50:27 +00:00
|
|
|
@pytest.mark.lisk
|
2019-09-11 12:29:39 +00:00
|
|
|
class TestMsgLiskVerifymessage:
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_verify(self, client):
|
|
|
|
with client:
|
|
|
|
client.set_expected_responses(
|
2018-08-13 16:21:24 +00:00
|
|
|
[
|
|
|
|
proto.ButtonRequest(code=proto.ButtonRequestType.Other),
|
|
|
|
proto.ButtonRequest(code=proto.ButtonRequestType.Other),
|
|
|
|
proto.Success(message="Message verified"),
|
|
|
|
]
|
|
|
|
)
|
2018-08-10 12:04:58 +00:00
|
|
|
lisk.verify_message(
|
2019-08-27 14:58:59 +00:00
|
|
|
client,
|
2018-09-14 10:23:38 +00:00
|
|
|
bytes.fromhex(
|
2018-08-13 16:21:24 +00:00
|
|
|
"eb56d7bbb5e8ea9269405f7a8527fe126023d1db2c973cfac6f760b60ae27294"
|
|
|
|
),
|
2018-09-14 10:23:38 +00:00
|
|
|
bytes.fromhex(
|
2018-08-13 16:21:24 +00:00
|
|
|
"7858ae7cd52ea6d4b17e800ca60144423db5560bfd618b663ffbf26ab66758563df45cbffae8463db22dc285dd94309083b8c807776085b97d05374d79867d05"
|
|
|
|
),
|
|
|
|
"This is an example of a signed message.",
|
2018-08-10 13:24:21 +00:00
|
|
|
)
|
2018-06-06 20:50:27 +00:00
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_verify_long(self, client):
|
|
|
|
with client:
|
|
|
|
client.set_expected_responses(
|
2018-08-13 16:21:24 +00:00
|
|
|
[
|
|
|
|
proto.ButtonRequest(code=proto.ButtonRequestType.Other),
|
|
|
|
proto.ButtonRequest(code=proto.ButtonRequestType.Other),
|
|
|
|
proto.Success(message="Message verified"),
|
|
|
|
]
|
|
|
|
)
|
2018-08-10 12:04:58 +00:00
|
|
|
lisk.verify_message(
|
2019-08-27 14:58:59 +00:00
|
|
|
client,
|
2018-09-14 10:23:38 +00:00
|
|
|
bytes.fromhex(
|
2018-08-13 16:21:24 +00:00
|
|
|
"8bca6b65a1a877767b746ea0b3c4310d404aa113df99c1b554e1802d70185ab5"
|
|
|
|
),
|
2018-09-14 10:23:38 +00:00
|
|
|
bytes.fromhex(
|
2018-08-13 16:21:24 +00:00
|
|
|
"458ca5896d0934866992268f7509b5e954d568b1251e20c19bd3149ee3c86ffb5a44d1c2a0abbb99a3ab4767272dbb0e419b4579e890a24919ebbbe6cc0f970f"
|
|
|
|
),
|
|
|
|
"VeryLongMessage!" * 64,
|
2018-06-06 20:50:27 +00:00
|
|
|
)
|