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 /NK_C_API.h | |
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 'NK_C_API.h')
-rw-r--r-- | NK_C_API.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -151,7 +151,8 @@ extern int NK_erase_totp_slot(uint8_t slot_number, const char *temporary_passwor * @return command processing error code */ extern int NK_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); /** * Write TOTP slot data to the device @@ -164,7 +165,8 @@ extern int NK_write_hotp_slot(uint8_t slot_number, const char *slot_name, const * @return command processing error code */ extern int NK_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); /** * Get HOTP code from the device |