Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
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
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
26
30
34
#define BENCHMARK(n)
Definition bench.h:65
static constexpr uint64_t BUFFER_SIZE_LARGE
Definition poly1305.cpp:13
static constexpr uint64_t BUFFER_SIZE_TINY
Definition poly1305.cpp:11
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
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
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
Definition random.h:85