diff options
author | Robin Lee <rgl@google.com> | 2015-08-03 16:21:22 +0100 |
---|---|---|
committer | Robin Lee <rgl@google.com> | 2015-12-08 16:40:56 +0000 |
commit | fbc65644b9bda216699f5f1f883d6dfa2668e545 (patch) | |
tree | cdbcaef4248f442402dcc74faebc4ab2b8c91cc9 /keystore/java/android/security/IKeyChainService.aidl | |
parent | f12288bda135ddf66073adce45e92ea8cc5d7450 (diff) |
DevicePolicy API to remove an installed KeyPair
The keypair is specified by alias and removed via a call to the
KeyChainService, which will have installed the pair in the first place.
Bug: 22541933
Change-Id: I37317e7c22e89816156e6e9a7abf4c5a59e8440a
Diffstat (limited to 'keystore/java/android/security/IKeyChainService.aidl')
-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 20c94c5946d7..cfcb4e0c16e1 100644 --- a/keystore/java/android/security/IKeyChainService.aidl +++ b/keystore/java/android/security/IKeyChainService.aidl @@ -33,6 +33,7 @@ interface IKeyChainService { // APIs used by DevicePolicyManager boolean installKeyPair(in byte[] privateKey, in byte[] userCert, String alias); + boolean removeKeyPair(String alias); // APIs used by Settings boolean deleteCaCertificate(String alias); |