diff options
| author | Szczepan Zalega <szczepan@nitrokey.com> | 2018-03-01 11:29:57 +0100 | 
|---|---|---|
| committer | Szczepan Zalega <szczepan@nitrokey.com> | 2018-03-01 11:35:00 +0100 | 
| commit | f5da7b4cbd508faef38fcdfff659fab5c4649838 (patch) | |
| tree | 3d5a3bd22235468cde6a28cc9346691b2b52323c /include | |
| parent | e6fc0cce3937b458179bed8648825f9f047a68d8 (diff) | |
| download | libnitrokey-f5da7b4cbd508faef38fcdfff659fab5c4649838.tar.gz libnitrokey-f5da7b4cbd508faef38fcdfff659fab5c4649838.tar.bz2 | |
Minor cleanup
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/NitrokeyManager.h | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/include/NitrokeyManager.h b/include/NitrokeyManager.h index 5a76616..ca58d24 100644 --- a/include/NitrokeyManager.h +++ b/include/NitrokeyManager.h @@ -70,6 +70,13 @@ char * strndup(const char* str, size_t maxlen);          bool erase_hotp_slot(uint8_t slot_number, const char *temporary_password);          std::vector<std::string> list_devices();          std::vector<std::string> list_devices_by_cpuID(); + +        /** +         * Connect to the device using unique smartcard:datacard id. +         * Needs list_device_by_cpuID() run first +         * @param id Current ID of the target device +         * @return true on success, false on failure +         */          bool connect_with_ID(const std::string id);          bool connect_with_path (std::string path);          bool connect(const char *device_model); | 
