diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2016-07-26 23:35:24 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2016-08-01 13:54:57 +0200 |
commit | f5b5339a0cd272b3be33013f01e14f5bcc6e5aa8 (patch) | |
tree | 78d21a5736b96c859f02ca51c8c9e87bd3e696b8 /include/stick10_commands.h | |
parent | 128a98b0f0a4eca879dbf9d6562ab744a36510e8 (diff) | |
download | libnitrokey-f5b5339a0cd272b3be33013f01e14f5bcc6e5aa8.tar.gz libnitrokey-f5b5339a0cd272b3be33013f01e14f5bcc6e5aa8.tar.bz2 |
Erasing slot - initial version with some authorization issues
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'include/stick10_commands.h')
-rw-r--r-- | include/stick10_commands.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/stick10_commands.h b/include/stick10_commands.h index d88c36b..fbd0698 100644 --- a/include/stick10_commands.h +++ b/include/stick10_commands.h @@ -587,6 +587,12 @@ class UserAuthenticate : Command<CommandID::USER_AUTHENTICATE> { uint8_t temporary_password[25]; bool isValid() const { return true; } + std::string dissect() const { + std::stringstream ss; + ss << "card_password:\t" << card_password << std::endl; + ss << "temporary_password:\t" << temporary_password << std::endl; + return ss.str(); + } } __packed; typedef Transaction<command_id(), struct CommandPayload, struct EmptyPayload> |