1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-11 23:22:50 +00:00
trezor-firmware/src/trezor/messages/MoneroExportedKeyImage.py
2018-08-03 19:14:29 +02:00

22 lines
441 B
Python

# Automatically generated by pb2py
# fmt: off
import protobuf as p
class MoneroExportedKeyImage(p.MessageType):
FIELDS = {
1: ('iv', p.BytesType, 0),
2: ('tag', p.BytesType, 0),
3: ('blob', p.BytesType, 0),
}
def __init__(
self,
iv: bytes = None,
tag: bytes = None,
blob: bytes = None,
) -> None:
self.iv = iv
self.tag = tag
self.blob = blob