1 /* 2 * Copyright (c) 2023-2024 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 PIN_AUTH_HDI 17 #define PIN_AUTH_HDI 18 19 #include "v2_1/iall_in_one_executor.h" 20 #include "v2_1/icollector.h" 21 #include "v2_1/iexecutor_callback.h" 22 #include "v2_1/pin_auth_interface_service.h" 23 #include "v2_1/iverifier.h" 24 #include "v2_1/pin_auth_types.h" 25 26 namespace OHOS { 27 namespace HDI { 28 namespace PinAuth { 29 using IPinAuthInterface = OHOS::HDI::PinAuth::V2_1::IPinAuthInterface; 30 using PinAuthInterfaceService = OHOS::HDI::PinAuth::V2_1::PinAuthInterfaceService; 31 32 using HdiIAllInOneExecutor = OHOS::HDI::PinAuth::V2_1::IAllInOneExecutor; 33 using HdiICollector = OHOS::HDI::PinAuth::V2_1::ICollector; 34 using HdiIVerifier = OHOS::HDI::PinAuth::V2_1::IVerifier; 35 using HdiIExecutorCallback = OHOS::HDI::PinAuth::V2_1::IExecutorCallback; 36 37 using HdiAuthType = OHOS::HDI::PinAuth::V2_1::AuthType; 38 using HdiExecutorRole = OHOS::HDI::PinAuth::V2_1::ExecutorRole; 39 using HdiExecutorSecureLevel = OHOS::HDI::PinAuth::V2_1::ExecutorSecureLevel; 40 using HdiExecutorInfo = OHOS::HDI::PinAuth::V2_1::ExecutorInfo; 41 using HdiGetPropertyType = OHOS::HDI::PinAuth::V2_1::GetPropertyType; 42 using HdiProperty = OHOS::HDI::PinAuth::V2_1::Property; 43 } // namespace PinAuth 44 } // namespace HDI 45 } // namespace OHOS 46 47 #endif // PIN_AUTH_HDI