Skip to content
Snippets Groups Projects
Commit 94e596ec authored by Eric Biggers's avatar Eric Biggers
Browse files

Copy KeyStore.UID_SELF to KeyProperties.UID_SELF

To make it possible to remove the obsolete and misleadingly named helper
class android.security.KeyStore, the UID_SELF constant will be moved to
KeyProperties.  This CL completes the first half of the move by adding
the constant to the new location.  A later CL will delete the constant
from the old location once all users have been updated.

Bug: 326508120
Test: build
Flag: NONE mechanical refactoring with no behavior change
Change-Id: I5aa839a19d548d9d5a86afc30ab39431c0b93aa5
parent 548ee385
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,6 @@ import android.annotation.Nullable;
import android.annotation.StringDef;
import android.annotation.SystemApi;
import android.os.Process;
import android.security.KeyStore;
import android.security.keymaster.KeymasterDefs;
import libcore.util.EmptyArray;
......@@ -1007,6 +1006,13 @@ public abstract class KeyProperties {
*/
public static final int NAMESPACE_LOCKSETTINGS = 103;
/**
* The legacy UID that corresponds to {@link #NAMESPACE_APPLICATION}.
* In new code, prefer to work with Keystore namespaces directly.
* @hide
*/
public static final int UID_SELF = -1;
/**
* For legacy support, translate namespaces into known UIDs.
* @hide
......@@ -1014,7 +1020,7 @@ public abstract class KeyProperties {
public static int namespaceToLegacyUid(@Namespace int namespace) {
switch (namespace) {
case NAMESPACE_APPLICATION:
return KeyStore.UID_SELF;
return UID_SELF;
case NAMESPACE_WIFI:
return Process.WIFI_UID;
default:
......@@ -1029,7 +1035,7 @@ public abstract class KeyProperties {
*/
public static @Namespace int legacyUidToNamespace(int uid) {
switch (uid) {
case KeyStore.UID_SELF:
case UID_SELF:
return NAMESPACE_APPLICATION;
case Process.WIFI_UID:
return NAMESPACE_WIFI;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment