Home
last modified time | relevance | path

Searched refs:testVerify (Results 1 – 6 of 6) sorted by relevance

/third_party/lz4/tests/
Dfuzzer.c1071 char* testVerify = (char*)malloc(testInputSize); in FUZ_unitTests() local
1076 if (!testInput || !testCompressed || !testVerify) { in FUZ_unitTests()
1086 LZ4_decompress_safe(testCompressed, testVerify, 0, testInputSize); in FUZ_unitTests()
1091 LZ4_decompress_safe(&tmp, testVerify, 1, testInputSize); in FUZ_unitTests()
1104 { int const r = LZ4_decompress_safe(tmp, testVerify, sizeof(tmp), testInputSize); in FUZ_unitTests()
1145 { int const dSize = LZ4_decompress_safe(testCompressed, testVerify, cSize, testInputSize); in FUZ_unitTests()
1147 { XXH32_hash_t const crcCheck = XXH32(testVerify, (size_t)dSize, 0); in FUZ_unitTests()
1165 char* const startInput = testVerify + startInputIndex; in FUZ_unitTests()
1169 … { int const dSize = LZ4_decompress_safe(startInput, testVerify, cSize, sampleSize); in FUZ_unitTests()
1171 { XXH64_hash_t const crcCheck = XXH64(testVerify, (size_t)dSize, 0); in FUZ_unitTests()
[all …]
/third_party/node/test/parallel/
Dtest-webcrypto-sign-verify-rsa.js14 async function testVerify({ function
201 variations.push(testVerify(vector));
205 variations.push(testVerify(vector));
Dtest-webcrypto-sign-verify-hmac.js13 async function testVerify({ hash, function
176 variations.push(testVerify(vector));
Dtest-webcrypto-sign-verify-ecdsa.js13 async function testVerify({ name, function
231 variations.push(testVerify(vector));
Dtest-webcrypto-sign-verify-eddsa.js13 async function testVerify({ name, function
214 variations.push(testVerify(vector));
Dtest-crypto-sign-verify.js287 function testVerify(cert, vector) { function
303 example.tests.forEach((test) => testVerify(publicKey, test));