My app uses Android 6.0 Fingerprint API to protect AES key in the Android KeyStore. The stored key can be used only when user is authenticated by fingerprint sensor because the KeyGenParameterSpec
is initialized with setUserAuthenticationRequired(true)
.
When the user touches the sensor I get the initialized Cipher from the callback onAuthenticationSucceeded(Cipher)
and I use it for decryption.
This works perfectly except on Samsung phones with Android 6. When I try to use the returned Cipher, Samsung phones sometimes throw android.security.KeyStoreException: Key user not authenticated
. So even though the Cipher is returned by the onAuthenticationSucceeded(Cipher)
the Android KeyStore thinks user was NOT authenticated by the fingerprint sensor.
It seems that the crash happens rather when the app was not used for longer time. When the app is wormed up all is working correctly usually.
As this error happens randomly and only on Samsung phones... It seems it is caused by some internal timing issue inside the Samsung implementation of Android 6.0 KeyStore and FingerPrint API.
Edit: This issue was also experienced in OnePlus and Acer phones.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…