IDKit SDK

Any sample for accessing MS Access database?
You can access MS Access database via ODBC. The only difference between SQLite code and ODBC code is the connection string passed to IEngine_Connect. See do...
Wed, 9 Sep, 2015 at 9:21 AM
Changes I perform in through ODBC are not reflected in ExpressID AFIS state
Concurrent access to the same database is supported only through ExpressID AFIS. It is not possible to open two ODBC connections from two SDK instances (or ...
Wed, 9 Sep, 2015 at 9:21 AM
Is it possible to make database connections using ADO.NET?
ADO.NET is not supported. ODBC is our database access layer of choice. Implementing ADO.NET is technically possible, but I don't see any reason to do so...
Wed, 9 Sep, 2015 at 9:21 AM
How do I use IDKit SDK from Delphi? Are there any samples?
We don't have IDKit Delphi connector and no samples for Delphi. The way you use our SDK depends on your version of Delphi. If you are using one of the n...
Thu, 17 May, 2018 at 12:43 PM
How does encryption work and how is encryption key stored?
IDKit SDK uses AES symmetric encryption. Each record in database is encrypted separately. Application is responsible for secure storage of the 256-bit encry...
Wed, 9 Sep, 2015 at 9:21 AM
Has IDKit threshold any role in enrollment or it's related just to verification and identification?
The IDKit threshold is meant for verification and identification. During the fingerprint capture phase (fingerprint template extraction) itself the threshol...
Tue, 6 Aug, 2019 at 12:07 PM
Two identical fingerprints do not match when they have different finger position
This is not a bug. It's a feature. Fingerprints on different positions are not compared at all. Finger position property was implemented exactly for thi...
Wed, 9 Sep, 2015 at 9:21 AM
IDKit similarity score characterization (FAR, FRR)
Information about how threshold influence on FAR can be found in IDKit documentation in section "4.8 Far and Threshold". Since IDKit...
Tue, 13 Oct, 2020 at 1:53 PM
Do I need IDKit PRO SDK to use standalone SQL database instead of SQLite?
IDKit PRO SDK supports standalone SQL databases via ODBC (Please note that you are forced to use IDKit's table structure in your SQL database). It is ...
Wed, 9 Sep, 2015 at 9:22 AM
Initialize IDKit SDK with a custom license file
C/C++ int length; const unsigned char * licenseContent = LoadMyFile("/path/to/mylicense.lic", &length);     //own function IEngine_InitWith...
Tue, 19 Mar, 2019 at 7:16 AM