/base/useriam/pin_auth/test/unittest/src/ |
H A D | framework_scrypt_scrypt_test.cpp | 46 std::vector<uint8_t> algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() local 47 Scrypt scrypt(algoParameter); in HWTEST_F() 56 std::vector<uint8_t> algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() local 57 Scrypt scrypt(algoParameter); in HWTEST_F()
|
H A D | inputer_get_data_proxy_test.cpp | 52 .algoParameter = {1, 2, 3, 4, 5, 6}, in HWTEST_F() 71 EXPECT_THAT(getDataParam.algoParameter, ElementsAre(1, 2, 3, 4, 5, 6)); in HWTEST_F() 89 .algoParameter = {1, 2, 3, 4, 5, 6}, in HWTEST_F() 108 .algoParameter = {1, 2, 3, 4, 5, 6}, in HWTEST_F()
|
H A D | inputer_data_impl_test.cpp | 63 param.algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() 78 param.algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() 92 param.algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() 107 param.algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() 128 param.algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() 146 param.algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() 164 param.algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() 182 param.algoParameter = {2, 3, 4, 5, 6, 7}; in HWTEST_F() 203 param.algoParameter = {3, 4, 5, 6, 7, 8}; in HWTEST_F() 224 param.algoParameter in HWTEST_F() [all...] |
H A D | inputer_get_data_service_test.cpp | 73 .algoParameter = testSalt, in HWTEST_F() 97 .algoParameter = testSalt, in HWTEST_F() 118 .algoParameter = testSalt, in HWTEST_F()
|
H A D | pin_auth_executor_callback_hdi_unit_test.cpp | 75 std::vector<uint8_t> algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() local 88 EXPECT_EQ(callbackHdi.OnGetData(algoParameter, authSubType, algoVersion, challenge, pinComplexityReg), HDF_FAILURE); in HWTEST_F() 102 std::vector<uint8_t> algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() local 113 EXPECT_EQ(callbackHdi.OnGetData(algoParameter, authSubType, algoVersion, challenge, pinComplexityReg), HDF_SUCCESS); in HWTEST_F() 130 std::vector<uint8_t> algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() local 140 EXPECT_EQ(callbackHdi.OnGetData(algoParameter, authSubType, algoVersion, challenge, pinComplexityReg), HDF_SUCCESS); in HWTEST_F() 238 std::vector<uint8_t> algoParameter = {1, 2, 3, 4, 5}; in HWTEST_F() local 243 EXPECT_EQ(callbackHdi.OnGetData(algoParameter, authSubType, algoVersion, challenge, pinComplexityReg), in HWTEST_F()
|
H A D | inputer_get_data_stub_test.cpp | 53 getDataParam.authSubType, getDataParam.algoParameter, *testErrorCode); in GetMockInputerGetDataService() 136 EXPECT_THAT(getDataParam.algoParameter, ElementsAre(1, 2, 3, 4, 5)); in HWTEST_F() 142 getDataParam.authSubType, getDataParam.algoParameter, testErrorCode); in HWTEST_F()
|
H A D | pin_auth_stub_test.cpp | 60 .algoParameter = {1, 2, 3, 4}, in HWTEST_F()
|
/base/useriam/pin_auth/frameworks/scrypt/inc/ |
H A D | scrypt.h | 37 explicit Scrypt(std::vector<uint8_t> algoParameter) : algoParameter_(std::move(algoParameter)) {} in Scrypt() argument
|
/base/useriam/pin_auth/test/fuzztest/services/modules/executors/pinauthexecutorcallbackhdi_fuzzer/ |
H A D | pin_auth_executor_callback_hdi_fuzzer.cpp | 109 std::vector<uint8_t> algoParameter; in FuzzOnGetData() local 114 FillFuzzUint8Vector(parcel, algoParameter); in FuzzOnGetData() 117 pinAuthExecutorCallbackHdi_->OnGetData(algoParameter, authSubType, algoVersion, challenge, in FuzzOnGetData()
|
/base/useriam/pin_auth/frameworks/ipc/common_defines/ |
H A D | inputer_get_data.h | 41 std::vector<uint8_t> algoParameter; member
|
/base/useriam/pin_auth/test/unittest/mocks/ |
H A D | mock_iexecute_callback.h | 34 MOCK_METHOD5(OnGetData, int32_t(uint64_t scheduleId, const std::vector<uint8_t> &algoParameter,
|
/base/useriam/pin_auth/services/modules/executors/src/ |
H A D | pin_auth_executor_callback_hdi.cpp | 108 int32_t PinAuthExecutorCallbackHdi::OnGetData(const std::vector<uint8_t> &algoParameter, uint64_t authSubType,
in OnGetData() argument 119 .algoParameter = algoParameter,
in OnGetData()
|
/base/useriam/pin_auth/test/fuzztest/frameworks/ipc/inputergetdataproxy_fuzzer/ |
H A D | inputer_get_data_proxy_fuzzer.cpp | 64 .algoParameter = algoParmeter, in InputerGetDataProxyFuzzTest()
|
/base/useriam/pin_auth/frameworks/ipc/src/ |
H A D | inputer_get_data_stub.cpp | 59 if (!data.ReadUInt8Vector(&(getDataParam.algoParameter))) { in ReadInputerGetDataParam() 60 IAM_LOGE("failed to read algoParameter"); in ReadInputerGetDataParam()
|
H A D | inputer_get_data_proxy.cpp | 39 if (!data.WriteUInt8Vector(getDataParam.algoParameter)) { in WriteInputerGetDataParam() 40 IAM_LOGE("write algoParameter fail"); in WriteInputerGetDataParam()
|
/base/useriam/pin_auth/services/modules/executors/inc/ |
H A D | pin_auth_executor_callback_hdi.h | 45 int32_t OnGetData(const std::vector<uint8_t>& algoParameter, uint64_t authSubType, uint32_t algoVersion,
|
/base/useriam/pin_auth/frameworks/client/src/ |
H A D | inputer_data_impl.cpp | 47 : mode_(param.mode), algoVersion_(param.algoVersion), algoParameter_(param.algoParameter), in InputerDataImpl()
|