Home
last modified time | relevance | path

Searched refs:KeysEntry (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/storage/
DRecoverableKeyStoreDbHelperTest.java29 …om.android.server.locksettings.recoverablekeystore.storage.RecoverableKeyStoreDbContract.KeysEntry;
67 "CREATE TABLE " + KeysEntry.TABLE_NAME + "( "
68 + KeysEntry._ID + " INTEGER PRIMARY KEY,"
69 + KeysEntry.COLUMN_NAME_USER_ID + " INTEGER,"
70 + KeysEntry.COLUMN_NAME_UID + " INTEGER,"
71 + KeysEntry.COLUMN_NAME_ALIAS + " TEXT,"
72 + KeysEntry.COLUMN_NAME_NONCE + " BLOB,"
73 + KeysEntry.COLUMN_NAME_WRAPPED_KEY + " BLOB,"
74 + KeysEntry.COLUMN_NAME_GENERATION_ID + " INTEGER,"
75 + KeysEntry.COLUMN_NAME_LAST_SYNCED_AT + " INTEGER,"
[all …]
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/storage/
DRecoverableKeyStoreDbHelper.java24 …om.android.server.locksettings.recoverablekeystore.storage.RecoverableKeyStoreDbContract.KeysEntry;
39 "CREATE TABLE " + KeysEntry.TABLE_NAME + "( "
40 + KeysEntry._ID + " INTEGER PRIMARY KEY,"
41 + KeysEntry.COLUMN_NAME_USER_ID + " INTEGER,"
42 + KeysEntry.COLUMN_NAME_UID + " INTEGER,"
43 + KeysEntry.COLUMN_NAME_ALIAS + " TEXT,"
44 + KeysEntry.COLUMN_NAME_NONCE + " BLOB,"
45 + KeysEntry.COLUMN_NAME_WRAPPED_KEY + " BLOB,"
46 + KeysEntry.COLUMN_NAME_GENERATION_ID + " INTEGER,"
47 + KeysEntry.COLUMN_NAME_LAST_SYNCED_AT + " INTEGER,"
[all …]
DRecoverableKeyStoreDb.java32 …om.android.server.locksettings.recoverablekeystore.storage.RecoverableKeyStoreDbContract.KeysEntry;
100 values.put(KeysEntry.COLUMN_NAME_USER_ID, userId); in insertKey()
101 values.put(KeysEntry.COLUMN_NAME_UID, uid); in insertKey()
102 values.put(KeysEntry.COLUMN_NAME_ALIAS, alias); in insertKey()
103 values.put(KeysEntry.COLUMN_NAME_NONCE, wrappedKey.getNonce()); in insertKey()
104 values.put(KeysEntry.COLUMN_NAME_WRAPPED_KEY, wrappedKey.getKeyMaterial()); in insertKey()
105 values.put(KeysEntry.COLUMN_NAME_LAST_SYNCED_AT, LAST_SYNCED_AT_UNSYNCED); in insertKey()
106 values.put(KeysEntry.COLUMN_NAME_GENERATION_ID, wrappedKey.getPlatformKeyGenerationId()); in insertKey()
107 values.put(KeysEntry.COLUMN_NAME_RECOVERY_STATUS, wrappedKey.getRecoveryStatus()); in insertKey()
110 values.putNull(KeysEntry.COLUMN_NAME_KEY_METADATA); in insertKey()
[all …]
DRecoverableKeyStoreDbContract.java30 static class KeysEntry implements BaseColumns { class in RecoverableKeyStoreDbContract