Searched refs:sha256Ctx (Results 1 – 2 of 2) sorted by relevance
79 SHA256_CTX sha256Ctx; in PatchMapFile() local80 SHA256_Init(&sha256Ctx); in PatchMapFile()81 SHA256_Update(&sha256Ctx, buffer.buffer, buffer.length); in PatchMapFile()83 SHA256_Final(digest.data(), &sha256Ctx); in PatchMapFile()
425 SHA256_CTX sha256Ctx = {}; in TestDecompressLz4() local426 SHA256_Init(&sha256Ctx); in TestDecompressLz4()427 …SHA256_Update(&sha256Ctx, static_cast<const uint8_t*>(mappedData), lz4Info.fileInfo.packedSize + 4… in TestDecompressLz4()428 SHA256_Final(digest.data(), &sha256Ctx); in TestDecompressLz4()520 SHA256_CTX sha256Ctx = {}; in TestDecompressGzip() local521 SHA256_Init(&sha256Ctx); in TestDecompressGzip()522 …SHA256_Update(&sha256Ctx, reinterpret_cast<const uint8_t*>(mappedData) + offset, zipInfo.fileInfo.… in TestDecompressGzip()523 SHA256_Final(digest.data(), &sha256Ctx); in TestDecompressGzip()540 SHA256_CTX sha256Ctx = {}; in TestCompressBuffer() local541 SHA256_Init(&sha256Ctx); in TestCompressBuffer()[all …]