Back to Blogs

Biometric authentication in Android II: The cryptographic twist

Android Development
Article
Technology, Information and Media
Remember about the ‘ANARCHIC’ future we discussed recently? You know, where we spoke about developers, app aesthetics, and app security.

Well, this would prevent you from even imagining that alternate universe (or what if its multiverse scenario?) Okay, enough jokes 😛

So, how?

As promised (we didn't solemnly swear, but still 😛), we’re back with the sequel to the biometric authentication in Android.

And this time, cryptography joins the bandwagon of enhancing app security. 

But first, what is cryptography? It is a technique used to secure sensitive data with algorithms that helps ensure the authenticity of data, which cannot be accessed without a secret key. This helps in preventing unauthorized users from reading the encrypted data.

So now, since you know what’s cryptography, let's get our hands dirty with the AndroidX Biometric API and cryptography.

AndroidX Biometric API and Cryptography

As we mentioned in the first article of this series, the AndroidX Biometric API is a comprehensive solution for handling biometric authentication in Android applications. This API authenticates users with the help of biometrics and device credentials.

Another key aspect of this API is that it includes an exciting feature known as CryptoObject, which can be used to incorporate cryptography in the authentication flow. The AndroidX Biometric API supports cryptographic solutions like Signature, Cipher, and Mac. Here, we’ll be focusing on Cipher.

After successful authentication with the biometric prompt, we can further enhance app security with a cryptographic operation. How, you ask?

By using a SecretKey object to perform encryption and decryption while authenticating with the Cipher object. 

So, let’s see how biometric authentication and cryptography work together in an Android framework. 

Cryptography and key management

As mentioned above, a cryptography-based authentication can be carried out using a Cipher object that enables the encryption and decryption of data. To use Cipher, we have to generate a SecretKey. This key can be used by authorized personnel to protect the data. 

In the Android ecosystem, these keys are stored in the KeyStore. This does the job of storing these keys at secure locations. 

In case, an app requests the SecretKey, the KeyStore provides an alias of the key, instead of the actual SecretKey itself. Only the KeyStore is capable of providing an alias of the SecretKey, which helps in boosting reliability and security. 

When the app wants to encrypt data, the KeyStore does that using the alias while providing us with the ciphertext, which is basically the encrypted data. The same also takes place when the app wants to decrypt the encrypted data. 

Here’s how it takes place:

Authenticating using only biometric credentials

If an app uses a SecretKey that needs biometric credentials to unlock, users have to authenticate their biometric credentials every time before the app accesses the SecretKey.

Here’s how to enable this with a few steps.

Step 1

Generate a key using the KeyGenParameterSpec configuration, we use a builder for that:

Step 2

Start the biometric authentication workflow using a cipher:

Step 3

 Use the SecretKey to encrypt the sensitive data inside biometric authentication callbacks:

Authenticating using biometric or lock screen credentials

If an app uses a SecretKey that needs biometric or lock screen credentials (password, pattern, or PIN) to unlock, then a validity time period must be specified. This validity allows the app to perform multiple cryptographic operations without re-authenticating the user. 

To use this type of key, we have to add a fallback to non-biometric credentials. Hence, we cannot pass an instance of CryptoObject in the authenticate() function of the BiometricPrompt.

Here’s how this type of authentication takes place.

Step 1

Generate a key using the KeyGenParameterSpec configuration:

Step 2

Encrypt the sensitive information within a time span of VALIDITY_DURATION_SECONDS after the user authenticates successfully:

To add the aforementioned callback, we can mention that the app supports device credentials by including DEVICE_CREDENTIAL into the set of values passed for setAllowedAuthenticators().

Authenticating using auth-per-use keys

Users also have the option to integrate auth-per-keys within the instance of the BiometricPrompt. Auth-per-keys are secret keys that are used to perform a single cryptographic operation. For example, if you have to carry out 5 cryptographic operations, you’ll need 5 auth-per-keys. 

Due to its immense security benefits, auth-per-keys offer exciting use cases such as making large payments or updating transaction statement records. 

To incorporate an auth-per-key within the BiometricPrompt, we can generate the following KeyGenParameterSpec configuration:

Authenticating without explicit user interaction

In some cases, users might not need to confirm the authentication process. Here, the users can interact with the app more quickly after re-authenticating using face or fingerprint recognition. 

To implement this, pass false into the setConfirmationRequired() function in PromptInfo Builder.

And that’s how you can build a passwordless secure solution for authentication using BiometricPrompt and cryptography. 

With passwordless solutions getting all the attention in recent times, stay tuned for our take on this exciting and potentially game-changing trend!

Subir Chakraborty

Subir Chakraborty works at Mutual Mobile as a Senior Engineer I.

More by this author