commit | 2f0c3976e3c3262cc8ad5f348cce6c9a653e1496 | [log] [tgz] |
---|---|---|
author | Branden Archer <brarcher@google.com> | Mon Nov 02 16:25:56 2020 -0800 |
committer | Branden Archer <brarcher@google.com> | Wed Nov 04 13:26:46 2020 -0800 |
tree | d2287ed93669eae1dd3b158d0711f868d6cea6a5 | |
parent | 552c0ca4437dd2b42a498eed085aa1fe214736f4 [diff] |
Add @SensitiveData to Keystore service and callback Bug: 171501998 Test: Builds and manual evaluation Change-Id: Ie2f88994afca298df34020bc62659e7c51060e6e
diff --git a/keystore/binder/android/security/keystore/IKeystoreOperationResultCallback.aidl b/keystore/binder/android/security/keystore/IKeystoreOperationResultCallback.aidl index 0a51511..f37b838 100644 --- a/keystore/binder/android/security/keystore/IKeystoreOperationResultCallback.aidl +++ b/keystore/binder/android/security/keystore/IKeystoreOperationResultCallback.aidl
@@ -22,6 +22,7 @@ /** * @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 7f8d941..e0879dd 100644 --- a/keystore/binder/android/security/keystore/IKeystoreService.aidl +++ b/keystore/binder/android/security/keystore/IKeystoreService.aidl
@@ -29,6 +29,7 @@ /** * @hide */ +@SensitiveData interface IKeystoreService { @UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553) int getState(int userId);