diff options
| author | Kevin Chyn <kchyn@google.com> | 2020-03-25 22:10:14 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-03-25 22:10:14 +0000 |
| commit | 127e3957d6f39b511a042c9ec779e9d3bcf3cd7b (patch) | |
| tree | c224827ef674579652cdde58f4616a58e1c86ffa /core/java/android | |
| parent | 6b55cef93413e5d5eb07fce4fbdc609c882e13e6 (diff) | |
| parent | 62190bda4379702dc46e52a793e738fd3f4e2dd6 (diff) | |
Merge changes I704914b2,I51560dfc,I866e84b2 into rvc-dev
* changes:
Allow BIOMETRIC_CONVENIENCE to register with BiometricService
Improve AuthService logging
Only BIOMETRIC_STRONG HATs should be sent to KeyStore
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/hardware/biometrics/IBiometricServiceReceiverInternal.aidl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/java/android/hardware/biometrics/IBiometricServiceReceiverInternal.aidl b/core/java/android/hardware/biometrics/IBiometricServiceReceiverInternal.aidl index 8bcaf828be97..e7219caf6cd8 100644 --- a/core/java/android/hardware/biometrics/IBiometricServiceReceiverInternal.aidl +++ b/core/java/android/hardware/biometrics/IBiometricServiceReceiverInternal.aidl @@ -26,7 +26,9 @@ package android.hardware.biometrics; oneway interface IBiometricServiceReceiverInternal { // Notify BiometricService that authentication was successful. If user confirmation is required, // the auth token must be submitted into KeyStore. - void onAuthenticationSucceeded(boolean requireConfirmation, in byte[] token); + // TODO(b/151967372): Strength should be changed to authenticatorId + void onAuthenticationSucceeded(boolean requireConfirmation, in byte[] token, + boolean isStrongBiometric); // Notify BiometricService authentication was rejected. void onAuthenticationFailed(); // Notify BiometricService than an error has occured. Forward to the correct receiver depending |
