OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:platformKey
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/
RecoverableKeyGenerator.java
83
* @param
platformKey
The user's platform key, with which to wrap the generated key.
95
PlatformEncryptionKey
platformKey
, int userId, int uid, String alias)
100
WrappedKey wrappedKey = WrappedKey.fromSecretKey(
platformKey
, key);
124
* @param
platformKey
The user's platform key, with which to wrap the generated key.
137
@NonNull PlatformEncryptionKey
platformKey
, int userId, int uid, @NonNull String alias,
142
WrappedKey wrappedKey = WrappedKey.fromSecretKey(
platformKey
, key);
WrappedKey.java
175
* Unwraps the {@code wrappedKeys} with the {@code
platformKey
}.
179
* @throws BadPlatformKeyException if the {@code
platformKey
} has a different generation ID to
185
PlatformDecryptionKey
platformKey
,
191
int platformKeyGenerationId =
platformKey
.getGenerationId();
202
platformKey
.getGenerationId()));
207
platformKey
.getKey(),
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/
WrappedKeyTest.java
94
AndroidKeyStoreSecretKey
platformKey
= generateAndroidKeyStoreKey();
97
new PlatformEncryptionKey(GENERATION_ID,
platformKey
), appKey);
102
new PlatformDecryptionKey(GENERATION_ID,
platformKey
), keysByAlias);
112
AndroidKeyStoreSecretKey
platformKey
= generateAndroidKeyStoreKey();
115
new PlatformEncryptionKey(GENERATION_ID,
platformKey
), appKey);
128
AndroidKeyStoreSecretKey
platformKey
= generateAndroidKeyStoreKey();
130
new PlatformEncryptionKey(GENERATION_ID,
platformKey
), generateKey());
136
new PlatformDecryptionKey(/*generationId=*/ 2,
platformKey
),
RecoverableKeyGeneratorTest.java
75
AndroidKeyStoreSecretKey
platformKey
= generatePlatformKey();
76
mPlatformKey = new PlatformEncryptionKey(TEST_GENERATION_ID,
platformKey
);
77
mDecryptKey = new PlatformDecryptionKey(TEST_GENERATION_ID,
platformKey
);
/packages/apps/Settings/tests/robotests/src/com/android/settings/slices/
SettingsSliceProviderTest.java
412
final String
platformKey
= "platform_key";
414
insertSpecialCase(
platformKey
, true /* isPlatformSlice */);
426
.appendPath(
platformKey
)
Completed in 568 milliseconds