Searched refs:passwordHash (Results 1 – 3 of 3) sorted by relevance
301 CredentialHash passwordHash = readPasswordHashIfExists(userId); in readCredentialHash() local303 if (passwordHash != null && patternHash != null) { in readCredentialHash()304 if (passwordHash.version == CredentialHash.VERSION_GATEKEEPER) { in readCredentialHash()305 return passwordHash; in readCredentialHash()309 } else if (passwordHash != null) { in readCredentialHash()310 return passwordHash; in readCredentialHash()435 byte[] passwordHash = null; in writeCredentialHash()438 passwordHash = hash.hash; in writeCredentialHash()442 writeFile(getLockPasswordFilename(userId), passwordHash); in writeCredentialHash() local
204 File passwordHash = new File(mStateFolder, PASSWORD_HASH_FILE_NAME); in writeHashAndSaltToFile() local205 fos = new FileOutputStream(passwordHash); in writeHashAndSaltToFile()
548 String passwordHash = passwordToHistoryHash(passwordToCheck, hashFactor, userId); in checkPasswordHistory() local552 if (history[i].equals(legacyHash) || history[i].equals(passwordHash)) { in checkPasswordHistory()