Searched defs:CredentialHash (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/locksettings/
H A DLockSettingsStorage.java95 public static class CredentialHash { class in class:LockSettingsStorage
99 private CredentialHash(byte[] hash, int type, int version) { method in class:LockSettingsStorage.CredentialHash
103 private CredentialHash(byte[] hash, int type, int version, boolean isBaseZeroPattern) { method in class:LockSettingsStorage.CredentialHash
106 throw new RuntimeException("Empty hash for CredentialHash");
110 throw new RuntimeException("None type CredentialHash should not have hash");
119 private static CredentialHash createBaseZeroPattern(byte[] hash) {
120 return new CredentialHash(hash, LockPatternUtils.CREDENTIAL_TYPE_PATTERN,
124 static CredentialHash create(byte[] hash, int type) {
126 throw new RuntimeException("Bad type for CredentialHash");
128 return new CredentialHash(has
[all...]

Completed in 43 milliseconds