aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NK_C_API.cc4
-rw-r--r--NK_C_API.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/NK_C_API.cc b/NK_C_API.cc
index 5571f0d..2531982 100644
--- a/NK_C_API.cc
+++ b/NK_C_API.cc
@@ -13,11 +13,11 @@ extern uint8_t NK_get_last_command_status(){
return _copy;
}
-extern int NK_login(const char *pin, const char *temporary_password) {
+extern int NK_login(const char *admin_pin, const char *temporary_password) {
auto m = NitrokeyManager::instance();
try {
m->connect();
- m->authorize(pin, temporary_password);
+ m->authorize(admin_pin, temporary_password);
}
catch (CommandFailedException & commandFailedException){
NK_last_command_status = commandFailedException.last_command_status;
diff --git a/NK_C_API.h b/NK_C_API.h
index a692a26..aef6182 100644
--- a/NK_C_API.h
+++ b/NK_C_API.h
@@ -10,7 +10,7 @@ extern "C"
{
//Make sure each function's declaration is in one line (for automatic python declaration processing)
extern void NK_set_debug(bool state);
-extern int NK_login(const char *pin, const char *temporary_password);
+extern int NK_login(const char *admin_pin, const char *temporary_password);
extern int NK_logout();
extern const char * NK_status();
extern const char * NK_get_totp_slot_name(uint8_t slot_number);