diff options
| author | Szczepan Zalega <szczepan@nitrokey.com> | 2018-03-09 14:25:02 +0100 | 
|---|---|---|
| committer | Szczepan Zalega <szczepan@nitrokey.com> | 2018-03-09 14:25:02 +0100 | 
| commit | 1a83474580406d2b40b1326e07db4d7d4b26aab8 (patch) | |
| tree | 573520b1fc5ca4d6d38e7be0a0d652db38d1fee2 | |
| parent | a45058113557780cb0cff32a61f39a3f36a96f33 (diff) | |
| parent | 88a37af33515e904d0d032602f64bfd213e89581 (diff) | |
| download | libnitrokey-1a83474580406d2b40b1326e07db4d7d4b26aab8.tar.gz libnitrokey-1a83474580406d2b40b1326e07db4d7d4b26aab8.tar.bz2 | |
Merge branch 'unencrypted_volume_pin_type'
Update C API with new command, determining the PIN type for unencrypted
volume RO/RW state change.
| -rw-r--r-- | NK_C_API.cc | 7 | ||||
| -rw-r--r-- | NK_C_API.h | 6 | 
2 files changed, 13 insertions, 0 deletions
| diff --git a/NK_C_API.cc b/NK_C_API.cc index 66bbcf9..dde150b 100644 --- a/NK_C_API.cc +++ b/NK_C_API.cc @@ -608,6 +608,13 @@ extern "C" {  		});  	} +  NK_C_API int NK_set_unencrypted_volume_rorw_pin_type_user() { +		auto m = NitrokeyManager::instance(); +		return get_with_result([&]() { +			return m->set_unencrypted_volume_rorw_pin_type_user() ? 1 : 0; +		}); +	} +  	NK_C_API const char* NK_list_devices_by_cpuID() {  		auto nm = NitrokeyManager::instance();  		return get_with_string_result([&]() { @@ -371,6 +371,12 @@ extern "C" {  	 */  	NK_C_API int NK_get_minor_firmware_version(); +  /** +   * Function to determine unencrypted volume PIN type +   * @param minor_firmware_version +   * @return Returns 1, if set unencrypted volume ro/rw pin type is User, 0 otherwise. +   */ +	NK_C_API int NK_set_unencrypted_volume_rorw_pin_type_user();  	/** | 
