summaryrefslogtreecommitdiff
path: root/keystore
diff options
context:
space:
mode:
authorBranden Archer <brarcher@google.com>2020-11-02 16:25:56 -0800
committerBranden Archer <brarcher@google.com>2020-11-04 13:26:46 -0800
commit2f0c3976e3c3262cc8ad5f348cce6c9a653e1496 (patch)
treed2287ed93669eae1dd3b158d0711f868d6cea6a5 /keystore
parent552c0ca4437dd2b42a498eed085aa1fe214736f4 (diff)
downloadsecurity-2f0c3976e3c3262cc8ad5f348cce6c9a653e1496.tar.gz
Add @SensitiveData to Keystore service and callback
Bug: 171501998 Test: Builds and manual evaluation Change-Id: Ie2f88994afca298df34020bc62659e7c51060e6e
Diffstat (limited to 'keystore')
-rw-r--r--keystore/binder/android/security/keystore/IKeystoreOperationResultCallback.aidl3
-rw-r--r--keystore/binder/android/security/keystore/IKeystoreService.aidl1
2 files changed, 3 insertions, 1 deletions
diff --git a/keystore/binder/android/security/keystore/IKeystoreOperationResultCallback.aidl b/keystore/binder/android/security/keystore/IKeystoreOperationResultCallback.aidl
index 0a515113..f37b8381 100644
--- a/keystore/binder/android/security/keystore/IKeystoreOperationResultCallback.aidl
+++ b/keystore/binder/android/security/keystore/IKeystoreOperationResultCallback.aidl
@@ -22,6 +22,7 @@ import android.security.keymaster.OperationResult;
/**
* @hide
*/
+@SensitiveData
oneway interface IKeystoreOperationResultCallback {
void onFinished(in OperationResult result);
-} \ No newline at end of file
+}
diff --git a/keystore/binder/android/security/keystore/IKeystoreService.aidl b/keystore/binder/android/security/keystore/IKeystoreService.aidl
index 7f8d941f..e0879dd2 100644
--- a/keystore/binder/android/security/keystore/IKeystoreService.aidl
+++ b/keystore/binder/android/security/keystore/IKeystoreService.aidl
@@ -29,6 +29,7 @@ import android.security.keystore.IKeystoreCertificateChainCallback;
/**
* @hide
*/
+@SensitiveData
interface IKeystoreService {
@UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553)
int getState(int userId);