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 explicit InputerDataImpl(const std::vector<uint8_t> &salt, const sptr<InputerSetData> &inputerSetData); 35 ~InputerDataImpl() override = default; 36 void OnSetData(int32_t authSubType, std::vector<uint8_t> data) override; 37 38 private: 39 std::vector<uint8_t> salt_; 40 sptr<InputerSetData> inputerSetData_ {nullptr}; 41 }; 42 } // namespace PinAuth 43 } // namespace UserIam 44 } // namespace OHOS 45 #endif // INPUTER_DATA_IMPL_H 46