diff options
| author | Szczepan Zalega <szczepan@nitrokey.com> | 2016-11-10 18:40:32 +0100 | 
|---|---|---|
| committer | Szczepan Zalega <szczepan@nitrokey.com> | 2016-12-03 16:01:49 +0100 | 
| commit | c51987f47307637beb6a1b75c351f273edda89cf (patch) | |
| tree | c2781c0a831c69b4aad04b15e8330f58cc5efa89 /include | |
| parent | c7e33af909a6e9883058685389aea7b5ad5b4dd1 (diff) | |
| download | libnitrokey-c51987f47307637beb6a1b75c351f273edda89cf.tar.gz libnitrokey-c51987f47307637beb6a1b75c351f273edda89cf.tar.bz2 | |
Working support for new NK Pro 0.8 authorization-less format
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/NitrokeyManager.h | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/include/NitrokeyManager.h b/include/NitrokeyManager.h index 24a83ec..c0064f7 100644 --- a/include/NitrokeyManager.h +++ b/include/NitrokeyManager.h @@ -5,6 +5,7 @@  #include "log.h"  #include "device_proto.h"  #include "stick10_commands.h" +#include "stick10_commands_0.8.h"  #include "stick20_commands.h"  #include <vector>  #include <memory> @@ -132,6 +133,21 @@ namespace nitrokey {          template <typename ProCommand, PasswordKind StoKind>          void change_PIN_general(char *current_PIN, char *new_PIN); +        void write_HOTP_slot_authorize(uint8_t slot_number, const char *slot_name, const char *secret, uint64_t hotp_counter, +                                   bool use_8_digits, bool use_enter, bool use_tokenID, const char *token_ID, +                                   const char *temporary_password); + +        void write_HOTP_slot_no_authorize(uint8_t slot_number, const char *slot_name, const char *secret, uint64_t hotp_counter, +                                      bool use_8_digits, bool use_enter, bool use_tokenID, const char *token_ID, +                                      const char *temporary_password) const; + +        void write_TOTP_slot_authorize(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); + +        void write_TOTP_slot_no_authorize(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) const;      };  } | 
