send real wire msgs in send_udp.py

This commit is contained in:
Jan Pochyla 2016-05-19 16:47:00 +02:00 committed by Pavol Rusnak
parent 9104d7684c
commit 506f2e0c36
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
1 changed files with 12 additions and 2 deletions

View File

@ -1,13 +1,23 @@
#!/usr/bin/python
import socket
import os
from binascii import unhexlify
UDP_IP = os.getenv('TREZOR_UDP_IP', '127.0.0.1')
UDP_PORT = int(os.getenv('TREZOR_UDP_PORT', '21324'))
MESSAGE = b'Hello, World!'
INITIALIZE = b'?##\x00\x00\x00\x00\x00\x00'
GET_PUBLIC_KEY = b'?##\x00\x0b\x00\x00\x00\r\x12\tsecp256k1\x18\x00'
PIN_MATRIX_ACK = b'?##\x00\x13\x00\x00\x00\x05\n\x03268'
messages = [
INITIALIZE,
# GET_PUBLIC_KEY,
# PIN_MATRIX_ACK,
]
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.sendto(MESSAGE, (UDP_IP, UDP_PORT))
sock.sendto(messages.pop(0), (UDP_IP, UDP_PORT))
while True:
print(sock.recv(64))