diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2016-10-22 18:15:46 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2016-11-26 15:54:11 +0100 |
commit | c07390ce32506e009ebf44c2ecc8190d21abd530 (patch) | |
tree | ad13473d483c2c3c8aa843f8f9e97186421978f3 | |
parent | 323cb033d330129f12ddc19ed96a264e1becf8bb (diff) | |
download | libnitrokey-c07390ce32506e009ebf44c2ecc8190d21abd530.tar.gz libnitrokey-c07390ce32506e009ebf44c2ecc8190d21abd530.tar.bz2 |
Remove already implemented commands
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
-rw-r--r-- | include/stick20_commands.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/include/stick20_commands.h b/include/stick20_commands.h index 40352a3..e57932d 100644 --- a/include/stick20_commands.h +++ b/include/stick20_commands.h @@ -226,26 +226,6 @@ namespace nitrokey { }; - class SendPassword : Command<CommandID::SEND_PASSWORD> { - public: - struct CommandPayload { - uint8_t password[30]; - }; - - typedef Transaction<command_id(), struct CommandPayload, struct EmptyPayload> - CommandTransaction; - }; - - class SendNewPassword : Command<CommandID::SEND_NEW_PASSWORD> { - public: - struct CommandPayload { - uint8_t password[30]; - }; - - typedef Transaction<command_id(), struct CommandPayload, struct EmptyPayload> - CommandTransaction; - }; - // TODO fix original nomenclature class SendSetReadonlyToUncryptedVolume : Command<CommandID::ENABLE_READWRITE_UNCRYPTED_LUN> { public: |