mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-09 17:10:17 +00:00
19 lines
405 B
Python
19 lines
405 B
Python
# Automatically generated by pb2py
|
|
from .. import protobuf as p
|
|
|
|
|
|
class PassphraseAck(p.MessageType):
|
|
MESSAGE_WIRE_TYPE = 42
|
|
FIELDS = {
|
|
1: ('passphrase', p.UnicodeType, 0),
|
|
2: ('state', p.BytesType, 0),
|
|
}
|
|
|
|
def __init__(
|
|
self,
|
|
passphrase: str = None,
|
|
state: bytes = None
|
|
) -> None:
|
|
self.passphrase = passphrase
|
|
self.state = state
|