diff options
author | Rubin Xu <rubinxu@google.com> | 2021-02-03 22:35:41 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2021-02-03 22:35:41 +0000 |
commit | 46915d9a1423c21a2b6d5d29a990b9d886a154cf (patch) | |
tree | 068485c75bae6560a4ad5e3cddd9781ab6c237e7 /keystore | |
parent | 2745c788a01d9402d4f9330e424e141565a57a19 (diff) | |
parent | 835170e397bcc9165537cb30c8ac212e9bb2708f (diff) |
Merge "Add DPM.hasKeyPair()"
Diffstat (limited to 'keystore')
-rw-r--r-- | keystore/java/android/security/IKeyChainService.aidl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/keystore/java/android/security/IKeyChainService.aidl b/keystore/java/android/security/IKeyChainService.aidl index 97da3cc6f80f..1ae6a631dbcb 100644 --- a/keystore/java/android/security/IKeyChainService.aidl +++ b/keystore/java/android/security/IKeyChainService.aidl @@ -46,6 +46,7 @@ interface IKeyChainService { boolean installKeyPair( in byte[] privateKey, in byte[] userCert, in byte[] certChain, String alias, int uid); boolean removeKeyPair(String alias); + boolean containsKeyPair(String alias); // APIs used by Settings boolean deleteCaCertificate(String alias); |