OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:KeySyncTask
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/
KeySyncTaskTest.java
111
private
KeySyncTask
mKeySyncTask;
132
mKeySyncTask = new
KeySyncTask
(
162
assertTrue(
KeySyncTask
.isPin("3298432574398654376547"));
167
assertFalse(
KeySyncTask
.isPin("398i54369548654"));
172
assertFalse(
KeySyncTask
.isPin("-3987543643"));
181
KeySyncTask
.hashCredentialsBySaltedSha256(salt, credentials),
182
KeySyncTask
.hashCredentialsBySaltedSha256(salt, credentials));
191
KeySyncTask
.hashCredentialsBySaltedSha256(salt, "password1234"),
192
KeySyncTask
.hashCredentialsBySaltedSha256(salt, "password12345")));
201
KeySyncTask
.hashCredentialsBySaltedSha256(randomBytes(64), credentials)
[
all
...]
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/
KeySyncTask.java
64
public class
KeySyncTask
implements Runnable {
65
private static final String TAG = "
KeySyncTask
";
94
public static
KeySyncTask
newInstance(
104
return new
KeySyncTask
(
129
KeySyncTask
(
156
synchronized(
KeySyncTask
.class) {
160
Log.e(TAG, "Unexpected exception thrown during
KeySyncTask
", e);
426
// We will need to pass extra argument to
KeySyncTask
to support custom pass phrase.
RecoverableKeyStoreManager.java
[
all
...]
Completed in 264 milliseconds