Merge "Refactor passwords/pins/patterns to byte[]"

This commit is contained in:
Rich Cannings
2019-02-27 03:21:57 +00:00
committed by Android (Google) Code Review
12 changed files with 116 additions and 80 deletions

View File

@@ -66,12 +66,12 @@ public class ShadowLockPatternUtils {
}
@Implementation
protected byte[] getPasswordHistoryHashFactor(String currentPassword, int userId) {
protected byte[] getPasswordHistoryHashFactor(byte[] currentPassword, int userId) {
return null;
}
@Implementation
protected boolean checkPasswordHistory(String passwordToCheck, byte[] hashFactor, int userId) {
protected boolean checkPasswordHistory(byte[] passwordToCheck, byte[] hashFactor, int userId) {
return false;
}
}