diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2016-10-19 11:54:01 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2016-10-19 16:55:06 +0200 |
commit | 945db76ab4c6eb42224f4d18f45e67390540b5d0 (patch) | |
tree | 4d8722809d20bac1a553408c95f24dce1cd59fc8 /NitrokeyManager.cc | |
parent | 4f0f91d7aafd5d91b1a6b50155cb56af3cd82125 (diff) | |
download | libnitrokey-945db76ab4c6eb42224f4d18f45e67390540b5d0.tar.gz libnitrokey-945db76ab4c6eb42224f4d18f45e67390540b5d0.tar.bz2 |
Fix bug for setting HOTP counters - send uint64 (was uint8)
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'NitrokeyManager.cc')
-rw-r--r-- | NitrokeyManager.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/NitrokeyManager.cc b/NitrokeyManager.cc index 47b68d4..a01dbec 100644 --- a/NitrokeyManager.cc +++ b/NitrokeyManager.cc @@ -179,9 +179,9 @@ namespace nitrokey{ std::copy(vec.begin(), vec.end(), dest); } - bool NitrokeyManager::write_HOTP_slot(uint8_t slot_number, const char *slot_name, const char *secret, uint8_t hotp_counter, - bool use_8_digits, bool use_enter, bool use_tokenID, const char *token_ID, - const char *temporary_password) { + bool NitrokeyManager::write_HOTP_slot(uint8_t slot_number, const char *slot_name, const char *secret, uint64_t hotp_counter, + bool use_8_digits, bool use_enter, bool use_tokenID, const char *token_ID, + const char *temporary_password) { if (!is_valid_hotp_slot_number(slot_number)) throw InvalidSlotException(slot_number); slot_number = get_internal_slot_number_for_hotp(slot_number); |