diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2016-07-27 06:16:00 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2016-08-01 13:54:57 +0200 |
commit | 33344655d519b351d17d4f166dba406d1ab79e8e (patch) | |
tree | 54b4d3e303a502bc45947f5d90173efdc2176f1a /NK_C_API.cc | |
parent | f5b5339a0cd272b3be33013f01e14f5bcc6e5aa8 (diff) | |
download | libnitrokey-33344655d519b351d17d4f166dba406d1ab79e8e.tar.gz libnitrokey-33344655d519b351d17d4f166dba406d1ab79e8e.tar.bz2 |
Handle misc functions: factory reset, build aes key, unlock user password (not yet tested)
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'NK_C_API.cc')
-rw-r--r-- | NK_C_API.cc | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/NK_C_API.cc b/NK_C_API.cc index db96c52..6565b7c 100644 --- a/NK_C_API.cc +++ b/NK_C_API.cc @@ -86,6 +86,27 @@ extern int NK_user_authenticate(const char* user_password, const char* user_temp }); } +extern int NK_factory_reset(const char* admin_password){ + auto m = NitrokeyManager::instance(); + return get_without_result( [&](){ + return m->factory_reset(admin_password); + }); +} +extern int NK_build_aes_key(const char* admin_password){ + auto m = NitrokeyManager::instance(); + return get_without_result( [&](){ + return m->build_aes_key(admin_password); + }); +} + +extern int NK_unlock_user_password(const char* admin_password){ + auto m = NitrokeyManager::instance(); + return get_without_result( [&](){ + return m->unlock_user_password(admin_password); + }); +} + + extern const char * NK_status() { auto m = NitrokeyManager::instance(); try { |