aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2016-10-22 18:14:24 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2016-11-26 15:54:11 +0100
commit323cb033d330129f12ddc19ed96a264e1becf8bb (patch)
treeb6b80b5370f3ad1a1ce672fe01432cd750631b1a
parent3f7aaa09e8f83b68aac29693b536b2d1e6619d83 (diff)
downloadlibnitrokey-323cb033d330129f12ddc19ed96a264e1becf8bb.tar.gz
libnitrokey-323cb033d330129f12ddc19ed96a264e1becf8bb.tar.bz2
Remove password matrix commands
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
-rw-r--r--include/stick20_commands.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/stick20_commands.h b/include/stick20_commands.h
index 86ac053..40352a3 100644
--- a/include/stick20_commands.h
+++ b/include/stick20_commands.h
@@ -190,32 +190,6 @@ namespace nitrokey {
CommandTransaction;
};
- class SendPasswordMatrix : Command<CommandID::SEND_PASSWORD_MATRIX> {
- public:
- typedef Transaction<command_id(), struct CommandPayload, struct EmptyPayload>
- CommandTransaction;
- };
-
- class SendPasswordMatrixPinData : Command<CommandID::SEND_PASSWORD_MATRIX_PINDATA> {
- public:
- struct CommandPayload {
- uint8_t pin_data[30]; // TODO how long actually can it be?
- };
-
- typedef Transaction<command_id(), struct CommandPayload, struct EmptyPayload>
- CommandTransaction;
- };
-
- class SendPasswordMatrixSetup : Command<CommandID::SEND_PASSWORD_MATRIX_SETUP> {
- public:
- struct CommandPayload {
- uint8_t setup_data[30]; // TODO how long actually can it be?
- };
-
- typedef Transaction<command_id(), struct CommandPayload, struct EmptyPayload>
- CommandTransaction;
- };
-
#define d(x) ss << " "#x":\t" << (int)x << std::endl;
class GetDeviceStatus : Command<CommandID::GET_DEVICE_STATUS> {