-
-
Notifications
You must be signed in to change notification settings - Fork 518
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android decrypts and gets data without fingerprint prompt #235
Comments
Hi pani7, watching the source code i found this:
as you can see the setUserAuthenticationRequired is currently disabled. I'm afraid you will have to wait the merge of this pull request: Without the setUserAuthenticationRequired, you can use the generated key (that lives in keystore) without the user authentication (technically you could use the key with the device locked). From the security perspective, The key material is relative protected (because the private key leaves out of your process memory), but with hooking an attacker was able to use this key without the user authentication. |
Running into the same issue, trying out a couple of the forks mentioned in the thread in the interim, no such luck thus far. Anyone using a fork, or similar library for now which provides the functionality on Android? |
#260 - correct implementation of the biometric in lib... waiting fo it merge and global spreading :) |
5.0.0 appears to have fixed the problem. I'm no longer running into this issue. Thanks! 🌮🌮🌮 |
I'm still experiencing this issue with v6.2.0 on a Xiaomi Mi 9, Android doesn't prompt for fingerprint and gets the data automatically from the keychain |
Hi, on ios after implementing basic example i get touchId prompt to authenticate with fingerprint to get data, but on android it just gets data and decrypts it without any prompt for fingerprint. I just get it immediately.
Is this correct behavior? Should i implement fingerprint prompt for android separately with other library and then upon success auth get data from keystore?
Thanks for your help
The text was updated successfully, but these errors were encountered: