diff options
| author | David Zeuthen <zeuthen@google.com> | 2020-01-31 17:35:57 -0500 |
|---|---|---|
| committer | David Zeuthen <zeuthen@google.com> | 2020-02-04 10:18:33 -0500 |
| commit | 117fcb6c33cc30202a90c7bf21a0ca8803249819 (patch) | |
| tree | 87c059eda2d0ec3eff9e249cf00208a02008e3ef /core/java/android/os/Process.java | |
| parent | 48f7f07d525138a54f57fbc7fdb4c81d511a0aa4 (diff) | |
Allow credstore to call into KeyAttestationApplicationIdProviderService
This was previously reserved for keystore only but since credstore
also needs to do attestations, this is needed.
Bug: 111446262
Test: atest android.security.identity.cts
Test: Manually verifying the AttestationApplicationId from credstore
Change-Id: Ie44f9e4c8f2e1bd916ccbe7c7e5537dc498d8154
Diffstat (limited to 'core/java/android/os/Process.java')
| -rw-r--r-- | core/java/android/os/Process.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/os/Process.java b/core/java/android/os/Process.java index 6f4f30c4981a..10b4e5ddcd55 100644 --- a/core/java/android/os/Process.java +++ b/core/java/android/os/Process.java @@ -99,6 +99,12 @@ public class Process { public static final int KEYSTORE_UID = 1017; /** + * Defines the UID/GID for credstore. + * @hide + */ + public static final int CREDSTORE_UID = 1076; + + /** * Defines the UID/GID for the NFC service process. * @hide */ |
