Add smartcard protocol T=0 (RRG repository PRs 71,72,74,75 by @merlokk) (#757)

This commit is contained in:
pwpiwi 2019-01-17 07:50:01 +01:00 committed by GitHub
parent 0d2624a0cc
commit 151a33c027
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 283 additions and 270 deletions

View file

@ -22,7 +22,8 @@ typedef enum SMARTCARD_COMMAND {
SC_CONNECT = (1 << 0),
SC_NO_DISCONNECT = (1 << 1),
SC_RAW = (1 << 2),
SC_SELECT = (1 << 3)
SC_SELECT = (1 << 3),
SC_RAW_T0 = (1 << 4)
} smartcard_command_t;