Home
last modified time | relevance | path

Searched refs:TRIPLE_BLOB_SIZE (Results 1 – 4 of 4) sorted by relevance

/base/security/huks/test/fuzz_test/innerapi_fuzzer/hksimportwrappedkey_fuzzer/
Dhksimportwrappedkey_fuzzer.cpp27 const int TRIPLE_BLOB_SIZE = 30; variable
32 if (data == nullptr || size <= (TRIPLE_BLOB_SIZE + sizeof(struct HksParamSet))) { in DoSomethingInterestingWithMyAPI()
47 … struct HksParamSet *paramSet = reinterpret_cast<struct HksParamSet *>(myData + TRIPLE_BLOB_SIZE); in DoSomethingInterestingWithMyAPI()
48 paramSet->paramSetSize = size - TRIPLE_BLOB_SIZE; in DoSomethingInterestingWithMyAPI()
/base/security/huks/test/fuzz_test/innerapi_fuzzer/hksupdate_fuzzer/
Dhksupdate_fuzzer.cpp27 const int TRIPLE_BLOB_SIZE = 30; variable
32 if (data == nullptr || size <= (sizeof(struct HksParamSet) + TRIPLE_BLOB_SIZE)) { in DoSomethingInterestingWithMyAPI()
47 … struct HksParamSet *paramSet = reinterpret_cast<struct HksParamSet *>(myData + TRIPLE_BLOB_SIZE); in DoSomethingInterestingWithMyAPI()
48 paramSet->paramSetSize = size - TRIPLE_BLOB_SIZE; in DoSomethingInterestingWithMyAPI()
/base/security/huks/test/fuzz_test/innerapi_fuzzer/hksfinish_fuzzer/
Dhksfinish_fuzzer.cpp26 const int TRIPLE_BLOB_SIZE = 30; variable
31 if (data == nullptr || size <= (sizeof(struct HksParamSet) + TRIPLE_BLOB_SIZE)) { in DoSomethingInterestingWithMyAPI()
46 … struct HksParamSet *paramSet = reinterpret_cast<struct HksParamSet *>(myData + TRIPLE_BLOB_SIZE); in DoSomethingInterestingWithMyAPI()
47 paramSet->paramSetSize = size - TRIPLE_BLOB_SIZE; in DoSomethingInterestingWithMyAPI()
/base/security/huks/test/fuzz_test/innerapi_fuzzer/hksbnexpmod_fuzzer/
Dhksbnexpmod_fuzzer.cpp26 const int TRIPLE_BLOB_SIZE = 30; variable
46 struct HksBlob n = { BLOB_SIZE, static_cast<uint8_t *>(myData + TRIPLE_BLOB_SIZE) }; in DoSomethingInterestingWithMyAPI()