blob: b4ebed70444173e9a861b6dc74425d94c08ac693 [file] [log] [blame]
Ilya Matyukhinf2da1a12019-09-25 15:31:03 -07001/*
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.hardware.biometrics;
18
19import android.hardware.biometrics.IBiometricServiceReceiverInternal;
20import android.hardware.biometrics.IBiometricServiceLockoutResetCallback;
21import android.hardware.face.IFaceServiceReceiver;
22import android.hardware.face.Face;
23
24/**
25 * This interface encapsulates fingerprint, face, iris, etc. authenticators.
26 * Implementations of this interface are meant to be registered with BiometricService.
27 * @hide
28 */
29interface IBiometricAuthenticator {
30
31 // This method prepares the service to start authenticating, but doesn't start authentication.
32 // This is protected by the MANAGE_BIOMETRIC signature permission. This method should only be
33 // called from BiometricService. The additional uid, pid, userId arguments should be determined
34 // by BiometricService. To start authentication after the clients are ready, use
35 // startPreparedClient().
36 void prepareForAuthentication(boolean requireConfirmation, IBinder token, long sessionId,
37 int userId, IBiometricServiceReceiverInternal wrapperReceiver, String opPackageName,
38 int cookie, int callingUid, int callingPid, int callingUserId);
39
40 // Starts authentication with the previously prepared client.
41 void startPreparedClient(int cookie);
42
43 // Same as above, with extra arguments.
44 void cancelAuthenticationFromService(IBinder token, String opPackageName,
45 int callingUid, int callingPid, int callingUserId, boolean fromClient);
46
47 // Determine if HAL is loaded and ready
48 boolean isHardwareDetected(String opPackageName);
49
50 // Determine if a user has at least one enrolled face
51 boolean hasEnrolledTemplates(int userId, String opPackageName);
52
53 // Reset the lockout when user authenticates with strong auth (e.g. PIN, pattern or password)
54 void resetLockout(in byte [] token);
55
56 // Explicitly set the active user (for enrolling work profile)
57 void setActiveUser(int uid);
Kevin Chyn7d07c892020-02-18 18:18:17 -080058
59 // Gets the authenticator ID representing the current set of enrolled templates
60 long getAuthenticatorId();
Ilya Matyukhinf2da1a12019-09-25 15:31:03 -070061}