aboutsummaryrefslogtreecommitdiff
path: root/include/NitrokeyManager.h
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2016-07-20 08:12:20 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2016-08-01 13:54:56 +0200
commitfb37116ea77f7961b12b1e289c3d48e6e517ea88 (patch)
treeba67e240be3d94bfb9d45d7d3b0e17bd0b834d7b /include/NitrokeyManager.h
parent6d42e3d56a6851fa2463ef45226fd027867d74a7 (diff)
downloadlibnitrokey-fb37116ea77f7961b12b1e289c3d48e6e517ea88.tar.gz
libnitrokey-fb37116ea77f7961b12b1e289c3d48e6e517ea88.tar.bz2
Write to TOTP slot
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'include/NitrokeyManager.h')
-rw-r--r--include/NitrokeyManager.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/NitrokeyManager.h b/include/NitrokeyManager.h
index 37b628d..551bea7 100644
--- a/include/NitrokeyManager.h
+++ b/include/NitrokeyManager.h
@@ -20,7 +20,8 @@ namespace nitrokey {
bool authorize(const char *pin, const char *temporary_password);
bool write_HOTP_slot(uint8_t slot_number, const char *slot_name, const char *secret, uint64_t hotp_counter,
const char *temporary_password);
- bool write_TOTP_slot(uint8_t slot_number, const char *secret, uint16_t time_window);
+ bool write_TOTP_slot(uint8_t slot_number, const char *slot_name, const char *secret,
+ uint16_t time_window, const char *temporary_password);
uint32_t get_HOTP_code(uint8_t slot_number);
uint32_t get_TOTP_code(uint8_t slot_number, uint64_t challenge, uint64_t last_totp_time,
uint8_t last_interval);