diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2016-08-05 10:39:05 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2016-08-05 10:39:18 +0200 |
commit | 42446e1a384d3391e4240afe349c34958e5fabed (patch) | |
tree | e69ec2a1772e53b4222322195a47343d5f36126c /include | |
parent | b038eabe137af6187c41344aa2f554cd5d72baad (diff) | |
download | libnitrokey-42446e1a384d3391e4240afe349c34958e5fabed.tar.gz libnitrokey-42446e1a384d3391e4240afe349c34958e5fabed.tar.bz2 |
Support writing token id to OTP slots in API
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/NitrokeyManager.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/NitrokeyManager.h b/include/NitrokeyManager.h index 5f89614..4dc6a81 100644 --- a/include/NitrokeyManager.h +++ b/include/NitrokeyManager.h @@ -22,11 +22,11 @@ namespace nitrokey { bool first_authenticate(const char *pin, const char *temporary_password); bool 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 *temporary_password); + bool use_8_digits, bool use_enter, bool use_tokenID, const char *token_ID, + const char *temporary_password); bool write_TOTP_slot(uint8_t slot_number, const char *slot_name, const char *secret, uint16_t time_window, - bool use_8_digits, - bool use_enter, bool use_tokenID, const char *temporary_password); + bool use_8_digits, bool use_enter, bool use_tokenID, const char *token_ID, + const char *temporary_password); uint32_t get_HOTP_code(uint8_t slot_number, const char *user_temporary_password); uint32_t get_TOTP_code(uint8_t slot_number, uint64_t challenge, uint64_t last_totp_time, uint8_t last_interval, const char *user_temporary_password); |