blob: be0e5f2c2d31ee1179106568a3c57154d6896d1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// Copyright (c) 2019-2022 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <bench/bench.h>
#include <crypto/poly1305.h>
#include <span.h>
/* Number of bytes to process per iteration */
static constexpr uint64_t BUFFER_SIZE_TINY = 64;
static constexpr uint64_t BUFFER_SIZE_SMALL = 256;
static constexpr uint64_t BUFFER_SIZE_LARGE = 1024*1024;
static void POLY1305(benchmark::Bench& bench, size_t buffersize)
{
std::vector<std::byte> tag(Poly1305::TAGLEN, {});
std::vector<std::byte> key(Poly1305::KEYLEN, {});
std::vector<std::byte> in(buffersize, {});
bench.batch(in.size()).unit("byte").run([&] {
Poly1305{key}.Update(in).Finalize(tag);
});
}
static void POLY1305_64BYTES(benchmark::Bench& bench)
{
POLY1305(bench, BUFFER_SIZE_TINY);
}
static void POLY1305_256BYTES(benchmark::Bench& bench)
{
POLY1305(bench, BUFFER_SIZE_SMALL);
}
static void POLY1305_1MB(benchmark::Bench& bench)
{
POLY1305(bench, BUFFER_SIZE_LARGE);
}
BENCHMARK(POLY1305_64BYTES, benchmark::PriorityLevel::HIGH);
BENCHMARK(POLY1305_256BYTES, benchmark::PriorityLevel::HIGH);
BENCHMARK(POLY1305_1MB, benchmark::PriorityLevel::HIGH);
|