Bitcoin ABC 0.30.5
P2P Digital Currency
poly1305.cpp
Go to the documentation of this file.
1// Copyright (c) 2019 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#include <iostream>
6
7#include <bench/bench.h>
8#include <crypto/poly1305.h>
9
10/* Number of bytes to process per iteration */
11static constexpr uint64_t BUFFER_SIZE_TINY = 64;
12static constexpr uint64_t BUFFER_SIZE_SMALL = 256;
13static constexpr uint64_t BUFFER_SIZE_LARGE = 1024 * 1024;
14
15static void POLY1305(benchmark::Bench &bench, size_t buffersize) {
16 std::vector<uint8_t> tag(POLY1305_TAGLEN, 0);
17 std::vector<uint8_t> key(POLY1305_KEYLEN, 0);
18 std::vector<uint8_t> in(buffersize, 0);
19 bench.batch(in.size()).unit("byte").run(
20 [&] { poly1305_auth(tag.data(), in.data(), in.size(), key.data()); });
21}
22
25}
26
29}
30
31static void POLY1305_1MB(benchmark::Bench &bench) {
33}
34
static constexpr uint64_t BUFFER_SIZE_LARGE
Definition: poly1305.cpp:13
static constexpr uint64_t BUFFER_SIZE_TINY
Definition: poly1305.cpp:11
BENCHMARK(POLY1305_64BYTES)
static constexpr uint64_t BUFFER_SIZE_SMALL
Definition: poly1305.cpp:12
static void POLY1305_256BYTES(benchmark::Bench &bench)
Definition: poly1305.cpp:27
static void POLY1305(benchmark::Bench &bench, size_t buffersize)
Definition: poly1305.cpp:15
static void POLY1305_64BYTES(benchmark::Bench &bench)
Definition: poly1305.cpp:23
static void POLY1305_1MB(benchmark::Bench &bench)
Definition: poly1305.cpp:31
Main entry point to nanobench's benchmarking facility.
Definition: nanobench.h:616
ANKERL_NANOBENCH(NODISCARD) std Bench & batch(T b) noexcept
Sets the batch size.
Bench & run(char const *benchmarkName, Op &&op)
Repeatedly calls op() based on the configuration, and performs measurements.
Definition: nanobench.h:1183
Bench & unit(char const *unit)
Sets the operation unit.
void poly1305_auth(uint8_t out[POLY1305_TAGLEN], const uint8_t *m, size_t inlen, const uint8_t key[POLY1305_KEYLEN])
Definition: poly1305.cpp:15
#define POLY1305_KEYLEN
Definition: poly1305.h:11
#define POLY1305_TAGLEN
Definition: poly1305.h:12