• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2023 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef USER_AUTH_HDI
17 #define USER_AUTH_HDI
18 
19 #include "v1_2/iuser_auth_interface.h"
20 #include "v1_2/user_auth_types.h"
21 #include "v1_2/user_auth_interface_service.h"
22 
23 namespace OHOS {
24 namespace HDI {
25 namespace UserAuth {
26 using IUserAuthInterface = OHOS::HDI::UserAuth::V1_2::IUserAuthInterface;
27 using UserAuthInterfaceService = OHOS::HDI::UserAuth::V1_2::UserAuthInterfaceService;
28 
29 using AuthType = OHOS::HDI::UserAuth::V1_2::AuthType;
30 using ExecutorRole = OHOS::HDI::UserAuth::V1_2::ExecutorRole;
31 using ExecutorSecureLevel = OHOS::HDI::UserAuth::V1_2::ExecutorSecureLevel;
32 using PinSubType = OHOS::HDI::UserAuth::V1_2::PinSubType;
33 using ScheduleMode = OHOS::HDI::UserAuth::V1_2::ScheduleMode;
34 using ExecutorRegisterInfo = OHOS::HDI::UserAuth::V1_2::ExecutorRegisterInfo;
35 using ExecutorInfo = OHOS::HDI::UserAuth::V1_2::ExecutorInfo;
36 using ScheduleInfo = OHOS::HDI::UserAuth::V1_2::ScheduleInfo;
37 using AuthSolution = OHOS::HDI::UserAuth::V1_2::AuthSolution;
38 using ExecutorSendMsg = OHOS::HDI::UserAuth::V1_2::ExecutorSendMsg;
39 using AuthResultInfo = OHOS::HDI::UserAuth::V1_2::AuthResultInfo;
40 using IdentifyResultInfo = OHOS::HDI::UserAuth::V1_2::IdentifyResultInfo;
41 using EnrollParam = OHOS::HDI::UserAuth::V1_2::EnrollParam;
42 using CredentialInfo = OHOS::HDI::UserAuth::V1_2::CredentialInfo;
43 using EnrolledInfo = OHOS::HDI::UserAuth::V1_2::EnrolledInfo;
44 using EnrollResultInfo = OHOS::HDI::UserAuth::V1_2::EnrollResultInfo;
45 
46 using ScheduleInfoV1_1 = OHOS::HDI::UserAuth::V1_2::ScheduleInfoV1_1;
47 using AuthSolutionV1_2 = OHOS::HDI::UserAuth::V1_2::AuthSolutionV1_2;
48 using EnrollParamV1_2 = OHOS::HDI::UserAuth::V1_2::EnrollParamV1_2;
49 using UserInfo = OHOS::HDI::UserAuth::V1_2::UserInfo;
50 using ExtUserInfo = OHOS::HDI::UserAuth::V1_2::ExtUserInfo;
51 } // namespace UserAuth
52 } // namespace HDI
53 } // namespace OHOS
54 
55 #endif // USER_AUTH_HDI