Roman Zeyde
8a90a8cd84
main: split git from ssh
2016-03-05 10:56:30 +02:00
Roman Zeyde
1e86983782
main: split argument parser
2016-03-05 10:46:36 +02:00
Roman Zeyde
c63201c90c
client: show visual challenge
2016-03-05 10:39:47 +02:00
Roman Zeyde
19b00dc427
client: add logging for challenge sizes
2016-02-27 20:09:03 +02:00
Roman Zeyde
aa35981980
README: add 'apt-get' to installation section
2016-02-27 09:49:15 +02:00
Roman Zeyde
8909b38107
main: use command-line for git interaction
2016-02-20 18:24:14 +02:00
Roman Zeyde
6d9aa9cb8a
README: license badge is broken most of the time
2016-02-19 20:54:36 +02:00
Roman Zeyde
d6532311b9
fix PEP8 & docstrings
2016-02-19 20:52:59 +02:00
Roman Zeyde
41b30b42b5
main: add git identity via "origin" remote
2016-02-19 20:48:16 +02:00
Roman Zeyde
5b0e56697f
travis: add pydocstyle
2016-02-19 11:41:05 +02:00
Roman Zeyde
0e6d998b4c
tox: add pydocstyle
2016-02-19 11:39:12 +02:00
Roman Zeyde
2c7fabfa35
tests: add docstrings
2016-02-19 11:35:34 +02:00
Roman Zeyde
1adccdbfe6
__init__: add docstrings
2016-02-19 11:35:27 +02:00
Roman Zeyde
04f4bbf2ac
main: add docstrings
2016-02-19 11:35:16 +02:00
Roman Zeyde
bbe963d0ff
util: rename UTs
2016-02-19 11:34:58 +02:00
Roman Zeyde
c49514754b
util: add docstrings
2016-02-19 11:34:20 +02:00
Roman Zeyde
2ebefff909
server: add docstrings
2016-02-19 11:19:01 +02:00
Roman Zeyde
21e89014c9
protocol: add docstrings and replace custom exceptions
2016-02-19 10:49:39 +02:00
Roman Zeyde
566e4310e1
formats: add docstrings
2016-02-19 10:40:39 +02:00
Roman Zeyde
e1441518d4
factory: add docstrings
2016-02-19 10:08:36 +02:00
Roman Zeyde
5cb12a43de
client: add docstrings
2016-02-19 10:07:33 +02:00
Roman Zeyde
df607f3665
pylint: add 'no-member' check
2016-02-18 14:28:16 +02:00
Roman Zeyde
d712509a4e
client: show current time instead of identity.path
2016-02-17 15:04:10 +02:00
Roman Zeyde
40e2d9fb2c
fixup imports order
...
isort -rc trezor_agent
2016-02-15 20:53:14 +02:00
Roman Zeyde
cd4cc059d6
main: remove git-config parsing code
2016-02-15 20:52:44 +02:00
Roman Zeyde
2b047f0525
main: refactor shell flag
2016-02-15 20:38:34 +02:00
Roman Zeyde
64776fd294
rename client test
2016-02-15 17:22:57 +02:00
Roman Zeyde
231995bd1a
remove trezor module
2016-02-15 17:22:01 +02:00
Roman Zeyde
ff76f17c02
client: elaborate SSH blob parsing
2016-02-13 20:26:23 +02:00
Roman Zeyde
963e80b49b
client: move logging from parsing code
2016-02-06 18:32:51 +02:00
Roman Zeyde
dee13b75ea
client: remove unneeded 'if'
2016-02-06 18:27:46 +02:00
Roman Zeyde
be86507e00
client: pass index as default argument
2016-02-06 17:52:49 +02:00
Roman Zeyde
2f2663ef94
client: set identity index explicitly
2016-02-06 17:51:57 +02:00
Roman Zeyde
cafa218e19
server: pass handler and add debug option
2016-01-26 21:14:52 +02:00
Roman Zeyde
50b627ed45
protocol: allow debugging SSH message handler
2016-01-26 21:14:27 +02:00
Roman Zeyde
7f36097c15
tests: refactor mocks and fakes
2016-01-22 12:04:24 +02:00
Roman Zeyde
a4b905cd6f
bump version
2016-01-19 22:56:54 +02:00
Roman Zeyde
2eff21f96c
factory: refactor for easier testing
2016-01-19 22:52:52 +02:00
Roman Zeyde
9afd07e867
server: make sure accepted UNIX sockets are blocking
...
It was a problem on Mac OS X, where sometimes we got EAGAIN
errors from calling socket.recv() on them.
2016-01-18 22:49:27 +02:00
Roman Zeyde
b101281a5b
main: add command-line argument for setting UNIX socket timeout
2016-01-16 22:14:36 +02:00
Roman Zeyde
8c6ac43cf4
Merge Trezor and KeepKey functionality
2016-01-15 13:20:38 +02:00
Kenneth Heutmaker
5932a89dc5
Make it work with KeepKey
2016-01-14 13:28:32 -08:00
Roman Zeyde
2009160ff2
Revert "travis: test with tox"
...
This reverts commit 3d8072522c
.
2016-01-09 17:46:07 +02:00
Roman Zeyde
3d8072522c
travis: test with tox
2016-01-09 17:41:17 +02:00
Roman Zeyde
0c63aef719
sort imports using isort tool
2016-01-09 16:06:47 +02:00
Roman Zeyde
c454114c4e
README: add gitter chat
2016-01-09 12:15:43 +02:00
Roman Zeyde
f9133f7e05
README: fixup license link
2016-01-09 11:19:33 +02:00
Roman Zeyde
33a6951a96
server: don't crash after single exception
2016-01-08 20:46:49 +02:00
Roman Zeyde
fb0d0a5f61
server: stop the server via a threading.Event
...
It seems that Mac OS does not support calling socket.shutdown(socket.SHUT_RD)
on a listening socket (see https://github.com/romanz/trezor-agent/issues/6 ).
The following implementation will set the accept() timeout to 0.1s and stop
the server if a threading.Event (named "quit_event") is set by the main thread.
2016-01-08 20:28:38 +02:00
Roman Zeyde
7ea20c7009
test_trezor: verify serialized signature
2016-01-08 17:30:08 +02:00