blob: c4bb72c71d176bd985a33eac2e4459112e634b03 [file] [log] [blame]
Brian Carlstromb9a07c12011-04-11 09:03:51 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package android.security;
17
Robin Leeabaa0692017-02-20 20:54:22 +000018import android.content.pm.StringParceledListSlice;
Zoltan Szatmary-Banf0ae1352014-08-18 10:48:33 +010019
Brian Carlstromb9a07c12011-04-11 09:03:51 -070020/**
21 * Caller is required to ensure that {@link KeyStore#unlock
22 * KeyStore.unlock} was successful.
23 *
24 * @hide
25 */
26interface IKeyChainService {
Brian Carlstrom2627d532011-05-13 12:54:24 -070027 // APIs used by KeyChain
Kenny Root5423e682011-11-14 08:43:13 -080028 String requestPrivateKey(String alias);
Fred Quintanaab8b84a2011-07-13 14:55:39 -070029 byte[] getCertificate(String alias);
Rubin Xub4365912016-03-23 12:13:22 +000030 byte[] getCaCertificates(String alias);
Brian Carlstrom2627d532011-05-13 12:54:24 -070031
Bartosz Fabianowski05dc9f72017-02-22 23:41:14 +010032 // APIs used by CertInstaller and DevicePolicyManager
33 String installCaCertificate(in byte[] caCertificate);
Brian Carlstrom2627d532011-05-13 12:54:24 -070034
Bernhard Bauer26408cc2014-09-08 14:07:31 +010035 // APIs used by DevicePolicyManager
Rubin Xub4365912016-03-23 12:13:22 +000036 boolean installKeyPair(in byte[] privateKey, in byte[] userCert, in byte[] certChain, String alias);
Robin Leefbc65642015-08-03 16:21:22 +010037 boolean removeKeyPair(String alias);
Bernhard Bauer26408cc2014-09-08 14:07:31 +010038
Brian Carlstrom2627d532011-05-13 12:54:24 -070039 // APIs used by Settings
Brian Carlstrom6da00332011-06-26 21:08:03 -070040 boolean deleteCaCertificate(String alias);
Brian Carlstrom2627d532011-05-13 12:54:24 -070041 boolean reset();
Robin Leeabaa0692017-02-20 20:54:22 +000042 StringParceledListSlice getUserCaAliases();
43 StringParceledListSlice getSystemCaAliases();
Zoltan Szatmary-Banf0ae1352014-08-18 10:48:33 +010044 boolean containsCaAlias(String alias);
45 byte[] getEncodedCaCertificate(String alias, boolean includeDeletedSystem);
46 List<String> getCaCertificateChainAliases(String rootAlias, boolean includeDeletedSystem);
Fred Quintanaab8b84a2011-07-13 14:55:39 -070047
48 // APIs used by KeyChainActivity
49 void setGrant(int uid, String alias, boolean value);
50 boolean hasGrant(int uid, String alias);
Brian Carlstromb9a07c12011-04-11 09:03:51 -070051}