diff options
| author | 2015-09-03 19:58:08 +0000 | |
|---|---|---|
| committer | 2015-09-03 19:58:08 +0000 | |
| commit | 6bd2f87ee4eac554646c5b04c44b6e3402bac84e (patch) | |
| tree | bb58b02ed3d96dd31a0d678b908cfaab235616d7 | |
| parent | 95179ad4be0377dd9fd35818145f705bcded0d28 (diff) | |
| parent | bd2ad550c5a7c7b7efbe3510f212322fb173b06c (diff) | |
am bd2ad550: am 34411e8f: Merge "Don\'t disable fingerprint when entering wrong credential" into mnc-dr-dev
* commit 'bd2ad550c5a7c7b7efbe3510f212322fb173b06c':
Don't disable fingerprint when entering wrong credential
| -rw-r--r-- | core/java/com/android/internal/widget/LockPatternUtils.java | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/core/java/com/android/internal/widget/LockPatternUtils.java b/core/java/com/android/internal/widget/LockPatternUtils.java index a3a01dab04db..4ac295866d0a 100644 --- a/core/java/com/android/internal/widget/LockPatternUtils.java +++ b/core/java/com/android/internal/widget/LockPatternUtils.java @@ -232,7 +232,7 @@ public class LockPatternUtils { public void reportFailedPasswordAttempt(int userId) { getDevicePolicyManager().reportFailedPasswordAttempt(userId); getTrustManager().reportUnlockAttempt(false /* authenticated */, userId); - requireCredentialEntry(userId); + requireStrongAuth(StrongAuthTracker.SOME_AUTH_REQUIRED_AFTER_WRONG_CREDENTIAL, userId); } public void reportSuccessfulPasswordAttempt(int userId) { @@ -1281,10 +1281,17 @@ public class LockPatternUtils { */ public static final int STRONG_AUTH_REQUIRED_AFTER_LOCKOUT = 0x8; + /** + * Some authentication is required because the user has entered a wrong credential. + */ + public static final int SOME_AUTH_REQUIRED_AFTER_WRONG_CREDENTIAL = 0x10; + public static final int DEFAULT = STRONG_AUTH_REQUIRED_AFTER_BOOT; - final SparseIntArray mStrongAuthRequiredForUser = new SparseIntArray(); + private static final int ALLOWING_FINGERPRINT = STRONG_AUTH_NOT_REQUIRED + | SOME_AUTH_REQUIRED_AFTER_WRONG_CREDENTIAL; + private final SparseIntArray mStrongAuthRequiredForUser = new SparseIntArray(); private final H mHandler; public StrongAuthTracker() { @@ -1323,7 +1330,7 @@ public class LockPatternUtils { * current strong authentication requirements. */ public boolean isFingerprintAllowedForUser(int userId) { - return getStrongAuthForUser(userId) == STRONG_AUTH_NOT_REQUIRED; + return (getStrongAuthForUser(userId) & ~ALLOWING_FINGERPRINT) == 0; } /** |