2018-11-08 17:15:49 +00:00
|
|
|
# This file is part of the Trezor project.
|
|
|
|
#
|
2019-05-29 16:44:09 +00:00
|
|
|
# Copyright (C) 2012-2019 SatoshiLabs and contributors
|
2018-11-08 17:15:49 +00:00
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# 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 License along with this library.
|
|
|
|
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
|
|
|
|
|
2018-06-13 17:04:18 +00:00
|
|
|
from . import messages as proto
|
2018-06-25 15:51:09 +00:00
|
|
|
from .tools import expect
|
2018-06-13 17:04:18 +00:00
|
|
|
|
|
|
|
|
2018-06-25 15:51:09 +00:00
|
|
|
@expect(proto.Entropy, field="entropy")
|
2018-06-13 17:04:18 +00:00
|
|
|
def get_entropy(client, size):
|
|
|
|
return client.call(proto.GetEntropy(size=size))
|
|
|
|
|
|
|
|
|
|
|
|
@expect(proto.SignedIdentity)
|
2018-08-13 16:21:24 +00:00
|
|
|
def sign_identity(
|
|
|
|
client, identity, challenge_hidden, challenge_visual, ecdsa_curve_name=None
|
|
|
|
):
|
|
|
|
return client.call(
|
|
|
|
proto.SignIdentity(
|
|
|
|
identity=identity,
|
|
|
|
challenge_hidden=challenge_hidden,
|
|
|
|
challenge_visual=challenge_visual,
|
|
|
|
ecdsa_curve_name=ecdsa_curve_name,
|
|
|
|
)
|
|
|
|
)
|
2018-06-13 17:04:18 +00:00
|
|
|
|
2018-06-13 17:35:01 +00:00
|
|
|
|
2018-06-13 17:04:18 +00:00
|
|
|
@expect(proto.ECDHSessionKey)
|
|
|
|
def get_ecdh_session_key(client, identity, peer_public_key, ecdsa_curve_name=None):
|
2018-08-13 16:21:24 +00:00
|
|
|
return client.call(
|
|
|
|
proto.GetECDHSessionKey(
|
|
|
|
identity=identity,
|
|
|
|
peer_public_key=peer_public_key,
|
|
|
|
ecdsa_curve_name=ecdsa_curve_name,
|
|
|
|
)
|
|
|
|
)
|
2018-06-13 17:04:18 +00:00
|
|
|
|
|
|
|
|
2018-06-25 15:51:09 +00:00
|
|
|
@expect(proto.CipheredKeyValue, field="value")
|
2018-08-13 16:21:24 +00:00
|
|
|
def encrypt_keyvalue(
|
|
|
|
client, n, key, value, ask_on_encrypt=True, ask_on_decrypt=True, iv=b""
|
|
|
|
):
|
|
|
|
return client.call(
|
|
|
|
proto.CipherKeyValue(
|
|
|
|
address_n=n,
|
|
|
|
key=key,
|
|
|
|
value=value,
|
|
|
|
encrypt=True,
|
|
|
|
ask_on_encrypt=ask_on_encrypt,
|
|
|
|
ask_on_decrypt=ask_on_decrypt,
|
|
|
|
iv=iv,
|
|
|
|
)
|
|
|
|
)
|
2018-06-13 17:35:01 +00:00
|
|
|
|
2018-06-13 17:04:18 +00:00
|
|
|
|
2018-06-25 15:51:09 +00:00
|
|
|
@expect(proto.CipheredKeyValue, field="value")
|
2018-08-13 16:21:24 +00:00
|
|
|
def decrypt_keyvalue(
|
|
|
|
client, n, key, value, ask_on_encrypt=True, ask_on_decrypt=True, iv=b""
|
|
|
|
):
|
|
|
|
return client.call(
|
|
|
|
proto.CipherKeyValue(
|
|
|
|
address_n=n,
|
|
|
|
key=key,
|
|
|
|
value=value,
|
|
|
|
encrypt=False,
|
|
|
|
ask_on_encrypt=ask_on_encrypt,
|
|
|
|
ask_on_decrypt=ask_on_decrypt,
|
|
|
|
iv=iv,
|
|
|
|
)
|
|
|
|
)
|