aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/NitrokeyManager.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/NitrokeyManager.h b/include/NitrokeyManager.h
index 7550998..a815571 100644
--- a/include/NitrokeyManager.h
+++ b/include/NitrokeyManager.h
@@ -29,10 +29,11 @@ namespace nitrokey {
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 *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);
- uint32_t get_TOTP_code(uint8_t slot_number, const char *user_temporary_password);
+ string get_HOTP_code(uint8_t slot_number, const char *user_temporary_password);
+ string get_TOTP_code(uint8_t slot_number, uint64_t challenge, uint64_t last_totp_time,
+ uint8_t last_interval,
+ const char *user_temporary_password);
+ string get_TOTP_code(uint8_t slot_number, const char *user_temporary_password);
stick10::ReadSlot::ResponsePayload get_TOTP_slot_data(const uint8_t slot_number);
stick10::ReadSlot::ResponsePayload get_HOTP_slot_data(const uint8_t slot_number);