OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unwrappedKeys
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/
WrappedKeyTest.java
101
Map<String, SecretKey>
unwrappedKeys
= WrappedKey.unwrapKeys(
104
assertEquals(1,
unwrappedKeys
.size());
105
assertTrue(
unwrappedKeys
.containsKey(alias));
106
assertArrayEquals(appKey.getEncoded(),
unwrappedKeys
.get(alias).getEncoded());
119
Map<String, SecretKey>
unwrappedKeys
= WrappedKey.unwrapKeys(
123
assertEquals(0,
unwrappedKeys
.size());
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/
WrappedKey.java
189
HashMap<String, SecretKey>
unwrappedKeys
= new HashMap<>();
222
unwrappedKeys
.put(alias, key);
225
return
unwrappedKeys
;
Completed in 227 milliseconds