1 /* 2 * Copyright (c) 2022 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 INPUTER_DATA_IMPL_H 17 #define INPUTER_DATA_IMPL_H 18 19 #include <cstdint> 20 #include <memory> 21 #include <mutex> 22 #include <vector> 23 24 #include "refbase.h" 25 26 #include "i_inputer_data.h" 27 #include "inputer_set_data.h" 28 29 namespace OHOS { 30 namespace UserIam { 31 namespace PinAuth { 32 class InputerDataImpl : public IInputerData { 33 public: 34 InputerDataImpl(const std::vector<uint8_t> &algoParameter, const sptr<InputerSetData> &inputerSetData, 35 uint32_t algoVersion, bool isEnroll); 36 ~InputerDataImpl() override = default; 37 void OnSetData(int32_t authSubType, std::vector<uint8_t> data) override; 38 39 private: 40 bool GetSha256(std::vector<uint8_t> &data, std::vector<uint8_t> &out); 41 void OnSetDataInner(int32_t authSubType, std::vector<uint8_t> &setData); 42 std::vector<uint8_t> algoParameter_ = {}; 43 sptr<InputerSetData> inputerSetData_ {nullptr}; 44 uint32_t algoVersion_ = 0; 45 bool isEnroll_ = false; 46 }; 47 } // namespace PinAuth 48 } // namespace UserIam 49 } // namespace OHOS 50 #endif // INPUTER_DATA_IMPL_H 51