Home
last modified time | relevance | path

Searched refs:verifyChallenge (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/android/service/gatekeeper/
DIGateKeeperService.aidl65 GateKeeperResponse verifyChallenge(int uid, long challenge, in byte[] enrolledPasswordHandle, in verifyChallenge() method
/frameworks/base/services/core/java/com/android/server/
DSyntheticPasswordManager.java446 GateKeeperResponse response = gatekeeper.verifyChallenge(fakeUid(userId), 0L, in unwrapPasswordBasedSyntheticPassword()
477 result.gkResponse = verifyChallenge(gatekeeper, result.authToken, 0L, userId); in unwrapPasswordBasedSyntheticPassword()
495 result.gkResponse = verifyChallenge(gatekeeper, result.authToken, 0L, userId); in unwrapTokenBasedSyntheticPassword()
546 public @Nullable VerifyCredentialResponse verifyChallenge(IGateKeeperService gatekeeper, in verifyChallenge() method in SyntheticPasswordManager
555 GateKeeperResponse response = gatekeeper.verifyChallenge(userId, challenge, in verifyChallenge()
567 return verifyChallenge(gatekeeper, auth, challenge, userId); in verifyChallenge()
DLockSettingsService.java1148 .verifyChallenge(userId, 0, willStore.hash, credential.getBytes()); in setLockCredentialInternal()
1535 .verifyChallenge(userId, challenge, storedHash.hash, credential.getBytes()); in verifyCredential()
1871 mSpManager.verifyChallenge(getGateKeeperService(), auth, 0L, userId); in initializeSyntheticPasswordLocked()
1926 response = mSpManager.verifyChallenge(getGateKeeperService(), authResult.authToken, in spBasedDoVerifyCredentialLocked()
1982 mSpManager.verifyChallenge(getGateKeeperService(), auth, 0L, userId); in setLockCredentialWithAuthTokenLocked()
1987 mSpManager.verifyChallenge(getGateKeeperService(), auth, 0L, userId); in setLockCredentialWithAuthTokenLocked()
/frameworks/base/services/tests/servicestests/src/com/android/server/
DMockGateKeeperService.java120 return verifyChallenge(uid, 0, enrolledPasswordHandle, providedPassword); in verify()
124 public GateKeeperResponse verifyChallenge(int uid, long challenge, in verifyChallenge() method in MockGateKeeperService