blob: 5606c06400f37581614ce7b4f40d0bd8e16e1e4b [file] [log] [blame]
Ram Periathiruvadi18789a82019-01-08 14:46:51 -08001/*
2 * Copyright (C) 2019 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 */
16
17package android.car.trust;
18
19import android.bluetooth.BluetoothDevice;
20import android.car.trust.ICarTrustAgentBleCallback;
21import android.car.trust.ICarTrustAgentEnrollmentCallback;
22
23/**
24 * Binder interface for CarTrustAgentEnrollmentService. The service implements the functionality
25 * to communicate with the remote device securely to enroll the remote device as a trusted device.
26 *
27 * @hide
28 */
29interface ICarTrustAgentEnrollment {
30 void startEnrollmentAdvertising();
31 void stopEnrollmentAdvertising();
32 void initiateEnrollmentHandshake(in BluetoothDevice device);
33 void enrollmentHandshakeAccepted();
34 void terminateEnrollmentHandshake();
Ram Periathiruvadia30d5022019-03-14 13:16:03 -070035 boolean isEscrowTokenActive(in long handle, int uid);
Ram Periathiruvadi18789a82019-01-08 14:46:51 -080036 void revokeTrust(in long handle);
Ram Periathiruvadia30d5022019-03-14 13:16:03 -070037 long[] getEnrollmentHandlesForUser(in int uid);
Ram Periathiruvadi18789a82019-01-08 14:46:51 -080038 void registerEnrollmentCallback(in ICarTrustAgentEnrollmentCallback callback);
39 void unregisterEnrollmentCallback(in ICarTrustAgentEnrollmentCallback callback);
40 void registerBleCallback(in ICarTrustAgentBleCallback callback);
41 void unregisterBleCallback(in ICarTrustAgentBleCallback callback);
42}