blob: 60fd7f79318d6a4ad52ff202dee78f1d25f1c6b3 [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
Brian Carlstromb9a07c12011-04-11 09:03:51 -070018/**
19 * Caller is required to ensure that {@link KeyStore#unlock
20 * KeyStore.unlock} was successful.
21 *
22 * @hide
23 */
24interface IKeyChainService {
Brian Carlstrom2627d532011-05-13 12:54:24 -070025 // APIs used by KeyChain
Kenny Root5423e682011-11-14 08:43:13 -080026 String requestPrivateKey(String alias);
Fred Quintanaab8b84a2011-07-13 14:55:39 -070027 byte[] getCertificate(String alias);
Brian Carlstrom2627d532011-05-13 12:54:24 -070028
29 // APIs used by CertInstaller
30 void installCaCertificate(in byte[] caCertificate);
31
32 // APIs used by Settings
Brian Carlstrom6da00332011-06-26 21:08:03 -070033 boolean deleteCaCertificate(String alias);
Brian Carlstrom2627d532011-05-13 12:54:24 -070034 boolean reset();
Fred Quintanaab8b84a2011-07-13 14:55:39 -070035
36 // APIs used by KeyChainActivity
37 void setGrant(int uid, String alias, boolean value);
38 boolean hasGrant(int uid, String alias);
Brian Carlstromb9a07c12011-04-11 09:03:51 -070039}