This commit is contained in:
2024-09-16 17:36:12 +03:00
parent 46ae1a5872
commit 090e765a58
5 changed files with 11 additions and 6 deletions

View File

@ -11,7 +11,7 @@ TEST(hash, sha256)
TEST(hash, sha256_1e4)
{
std::vector<uint8_t> data(32);
for(uint64_t i = 0; i < 1e4; i++)
for (uint64_t i = 0; i < 1e4; i++)
{
sha256(data);
}