diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2016-07-26 17:14:33 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2016-08-01 13:54:57 +0200 |
commit | 664d33c8966f478d6f077a666a39a5b76a235ffa (patch) | |
tree | 974a2eb7ac68d07831f0bcc118888fd9e7291cba /include/stick10_commands.h | |
parent | 32ed4100e098ae2930e6fd94800c6ce7041101c2 (diff) | |
download | libnitrokey-664d33c8966f478d6f077a666a39a5b76a235ffa.tar.gz libnitrokey-664d33c8966f478d6f077a666a39a5b76a235ffa.tar.bz2 |
Handling PW safe login and password
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'include/stick10_commands.h')
-rw-r--r-- | include/stick10_commands.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/stick10_commands.h b/include/stick10_commands.h index d350044..92bddd5 100644 --- a/include/stick10_commands.h +++ b/include/stick10_commands.h @@ -376,7 +376,7 @@ class GetPasswordSafeSlotName : Command<CommandID::GET_PW_SAFE_SLOT_NAME> { bool isValid() const { return !(slot_number & 0xF0); } std::string dissect() const { std::stringstream ss; - ss << "slot_number\t" << slot_number << std::endl; + ss << "slot_number\t" << (int)slot_number << std::endl; return ss.str(); } } __packed; @@ -387,7 +387,7 @@ class GetPasswordSafeSlotName : Command<CommandID::GET_PW_SAFE_SLOT_NAME> { bool isValid() const { return true; } std::string dissect() const { std::stringstream ss; - ss << " slot_name\t" << slot_name << std::endl; + ss << " slot_name\t" << (char*)slot_name << std::endl; return ss.str(); } } __packed; @@ -405,7 +405,7 @@ class GetPasswordSafeSlotPassword bool isValid() const { return !(slot_number & 0xF0); } std::string dissect() const { std::stringstream ss; - ss << " slot_number\t" << slot_number << std::endl; + ss << " slot_number\t" << (int)slot_number << std::endl; return ss.str(); } } __packed; @@ -416,7 +416,7 @@ class GetPasswordSafeSlotPassword bool isValid() const { return true; } std::string dissect() const { std::stringstream ss; - ss << " slot_password\t" << slot_password << std::endl; + ss << " slot_password\t" << (char*)slot_password << std::endl; return ss.str(); } } __packed; @@ -434,7 +434,7 @@ class GetPasswordSafeSlotLogin bool isValid() const { return !(slot_number & 0xF0); } std::string dissect() const { std::stringstream ss; - ss << " slot_number\t" << slot_number << std::endl; + ss << " slot_number\t" << (int)slot_number << std::endl; return ss.str(); } } __packed; @@ -445,7 +445,7 @@ class GetPasswordSafeSlotLogin bool isValid() const { return true; } std::string dissect() const { std::stringstream ss; - ss << " slot_login\t" << slot_login << std::endl; + ss << " slot_login\t" << (char*)slot_login << std::endl; return ss.str(); } } __packed; |