Fingerprint scanning and biometric support for Codename One.
This cn1lib provides basic support for fingerprint scanning on iOS/Android with one API. Due to the difference between the two implementations we chose a simplified approach that just verifies the fingerprint and doesn’t delve into the nuanced complexities for this API.
For instructions on installing cn1libs, see this tutorial.
If your project uses Maven, the above installation instructions will still work, but you can alternately simply add the Maven dependency to your common/pom.xml file:
<dependency>
<groupId>com.codenameone</groupId>
<artifactId>fingerprint-scanner-lib</artifactId>
<version>1.0</version>
<type>pom</type>
</dependency>
Important
|
Android builds must use build tools 29 or higher. E.g. Add the following build hints: android.buildToolsVersion=29.0.3 android.targetSdkVersion=29.0.3 |
Fingerprint.scanFingerprint("Use your finger print to unlock AppName.", value -> {
Log.p("Scan successfull!");
}, (sender, err, errorCode, errorMessage) -> {
Log.p("Scan Failed!");
});
Note that the values passed to value/fail are null
and don’t include any data at this time…
Also check out the following samples:
-
FingerprintScannerTest App - Basic usage. Just fingerprint scanning.
-
FingerprintScannerSample - From Codename One samples. Includes sample of storing, retrieving, and deleting passwords.
This library also allows you to store passwords in the system keychain, protected by biometric authentication. The user will be asked to authenticate with their fingerprint (or Face recognition on supported devices) in order to retrieve passwords using this library. On Android, currently the user is also prompted to authenticate when storing passwords as well.
Note
|
While these methods say that they are for storing passwords, you can use them for storing any text. Both Android and iOS should allow you to store strings of sufficiently large size to store anything you might otherwise store in Preferences. |
String account = "[email protected]";
String password = "....";
Fingerprint.addPassword(
"Adding secure item to keystore", // Message to display in authentication dialog
account,
password
).onResult((success, err)->{
if (err != null) {
Log.e(err);
ToastBar.showErrorMessage("Failed to add password to keystore: "+ err.getMessage());
} else {
// success always true if there was no error.
ToastBar.showInfoMessage("Successfully added password to keystore");
}
});
String account = "[email protected]";
Fingerprint.getPassword(
"Getting secure item", // Message to display in auth dialog
account
).onResult((password, err)->{
if (err != null) {
// Error condition occurs both if the keychain doesn't have
// a password for the given account, or if a failure occurs
// in retrieving it.
// NOTE: If the user adds a finger or face to biometric scanning
// or disables password protection on the device, all passwords
// will be purged automatically.
Log.e(err);
ToastBar.showErrorMessage("Failed to get password: " + err.getMessage());
} else {
System.out.println("The password was "+password);
}
});
String account = "[email protected]";
Fingerprint.deletePassword(
"Getting secure item", // Message to display in auth dialog
keyName.getText()
).onResult((res, err)->{
if (err != null) {
Log.e(err);
ToastBar.showErrorMessage("Failed to delete password: "+err.getMessage());
} else {
System.out.println("Deleted the password for account "+account);
}
});
Passwords stored in the keychain will be automatically purged if any of the following occurs:
-
The user adds additional fingers to fingerprint authentication.
-
The user adds additional faces to face ID biometric authentication.
-
The user turns off phone login security. E.g. if they turn off password or fingerprint requirements for login to the phone.
Currently, on Android we are using the FingerprintManager class for authentication on API 28 (Android 9) and lower and BiometricPrompt on devices running API 29 (Android 10) and higher. This means that Android 9, despite supporting Face recognition at an OS level, will use FingerPrintManager and will not support face recognition for authentication. Future versions may attempt to incorporate workarounds to add this support to Android 9, e.g. AdvancedBiometricPromptCompat.
Passwords are not, themselves, stored inside the system Keystore. Rather, a symmetric Key is generated and stored inside the keychain, which is used to encrypt and decrypt the passwords, which are stored private SharedPreferences
.
Currently the key specifications are:
new KeyGenParameterSpec.Builder(
KEY_ID,
KeyProperties.PURPOSE_ENCRYPT | KeyProperties.PURPOSE_DECRYPT
)
.setBlockModes(KeyProperties.BLOCK_MODE_CBC)
.setUserAuthenticationRequired(true)
.setEncryptionPaddings(KeyProperties.ENCRYPTION_PADDING_PKCS7)
Refer to the KeyGenParameterSpec.Builder docs for a more detailed description of what these settings mean.
The .setUserAuthenticationRequired(true)
call is what causes the key to become invalid when the user adds fingers or faces to authentication.
On iOS, the library acts as a thin layer on top of the SecItemAdd, SecItemCopyMatching, and SecItemDelete functions which directly add passwords to the keychain.
The security settings on the passwords are:
SecAccessControlRef sacRef = SecAccessControlCreateWithFlags(kCFAllocatorDefault,
kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly,
kSecAccessControlTouchIDCurrentSet,
nil
);
For more details on what these mean, see the following documentation pages:
-
Check out with
git clone https://github.com/codenameone/FingerprintScanner
-
Build with
mvn package
-
You’ll find cn1lib in the common/target directory.
-
See the Codename One Maven Manual for more information about working with Codename One Maven projects.
-
Set up your ~/.m2/settings.xml file with credentials for Maven central.
-
Run
bash update-version.sh $NEW_VERSION
where$NEW_VERSION
is the new version. E.g. "1.1". -
git push && git push --tags
to push the new version tag to git. -
mvn deploy -Psign-artifacts
-
Log into Maven central and complete the release.
-
Run
bash update-version $NEW_SNAPSHOT_VERSION
where$NEW_SNAPSHOT_VERSION
is the next snapshot version E.g. 1.2-SNAPSHOT.