Searched refs:paramSetIn (Results 1 - 5 of 5) sorted by relevance
/drivers/peripheral/huks/test/fuzztest/agreekeyfuzz/ |
H A D | huks_hdi_fuzzer.cpp | 41 struct HksParamSet *paramSetIn = reinterpret_cast<struct HksParamSet *>(myData);
in DoSomethingInterestingWithMyAPI() local 42 paramSetIn->paramSetSize = PARAMSET_SIZE;
in DoSomethingInterestingWithMyAPI() 44 if (HuksFreshParamSet(paramSetIn, false) != 0) {
in DoSomethingInterestingWithMyAPI() 58 (void)g_instance->HuksHdiAgreeKey(paramSetIn, &privatekey, &publickey, &out);
in DoSomethingInterestingWithMyAPI()
|
/drivers/peripheral/huks/test/fuzztest/generatekeyfuzz/ |
H A D | huks_hdi_fuzzer.cpp | 39 struct HksParamSet *paramSetIn = reinterpret_cast<struct HksParamSet *>(myData + INIT_KEY_ALIAS_SIZE);
in DoSomethingInterestingWithMyAPI() local 40 paramSetIn->paramSetSize = size - INIT_KEY_ALIAS_SIZE;
in DoSomethingInterestingWithMyAPI() 42 if (HuksFreshParamSet(paramSetIn, false) != 0) {
in DoSomethingInterestingWithMyAPI() 57 (void)g_instance->HuksHdiGenerateKey(&keyAlias, paramSetIn, &key, &out);
in DoSomethingInterestingWithMyAPI()
|
/drivers/peripheral/huks/test/fuzztest/importwrappedkeyfuzz/ |
H A D | huks_hdi_fuzzer.cpp | 41 struct HksParamSet *paramSetIn = reinterpret_cast<struct HksParamSet *>(myData + WRAPPED_KEY_DATA);
in DoSomethingInterestingWithMyAPI() local 42 paramSetIn->paramSetSize = PARAMSET_SIZE;
in DoSomethingInterestingWithMyAPI() 45 if (HuksFreshParamSet(paramSetIn, false) != 0) {
in DoSomethingInterestingWithMyAPI() 59 (void)g_instance->HuksHdiImportWrappedKey(nullptr, &key, &wrappedKeyData, paramSetIn, &out);
in DoSomethingInterestingWithMyAPI()
|
/drivers/peripheral/huks/hdi_service/ |
H A D | huks_hdi_passthrough_adapter.h | 27 int32_t HuksHdiAdapterGenerateKey(const struct HksBlob *keyAlias, const struct HksParamSet *paramSetIn,
|
H A D | huks_hdi_passthrough_adapter.c | 61 int32_t HuksHdiAdapterGenerateKey(const struct HksBlob *keyAlias, const struct HksParamSet *paramSetIn,
in HuksHdiAdapterGenerateKey() argument 69 return g_coreEngine->HuksHdiGenerateKey(keyAlias, paramSetIn, keyIn, keyOut);
in HuksHdiAdapterGenerateKey()
|
Completed in 3 milliseconds