aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2016-08-04 12:06:04 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2016-08-05 10:17:30 +0200
commit7b3174e6c5271a2e7160625ce70aa28f120fb662 (patch)
tree0308f03a48504350bdac25e4c396bb67dd2e3e05 /include
parentfd95d2ec8b0160657709f1655887739191f33932 (diff)
downloadlibnitrokey-7b3174e6c5271a2e7160625ce70aa28f120fb662.tar.gz
libnitrokey-7b3174e6c5271a2e7160625ce70aa28f120fb662.tar.bz2
Handle OTP slot config in C API during writing
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'include')
-rw-r--r--include/NitrokeyManager.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/NitrokeyManager.h b/include/NitrokeyManager.h
index e9b3be2..0a27bd8 100644
--- a/include/NitrokeyManager.h
+++ b/include/NitrokeyManager.h
@@ -21,10 +21,12 @@ namespace nitrokey {
static NitrokeyManager *instance();
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, uint64_t hotp_counter,
- bool use_8_digits, 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, 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 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);
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);