Bitcoin Core 28.99.0
P2P Digital Currency
chacha20.cpp
Go to the documentation of this file.
1// Copyright (c) 2019-2022 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
6#include <bench/bench.h>
7#include <crypto/chacha20.h>
9#include <span.h>
10
11#include <cstddef>
12#include <cstdint>
13#include <vector>
14
15/* Number of bytes to process per iteration */
16static const uint64_t BUFFER_SIZE_TINY = 64;
17static const uint64_t BUFFER_SIZE_SMALL = 256;
18static const uint64_t BUFFER_SIZE_LARGE = 1024*1024;
19
20static void CHACHA20(benchmark::Bench& bench, size_t buffersize)
21{
22 std::vector<std::byte> key(32, {});
23 ChaCha20 ctx(key);
24 ctx.Seek({0, 0}, 0);
25 std::vector<std::byte> in(buffersize, {});
26 std::vector<std::byte> out(buffersize, {});
27 bench.batch(in.size()).unit("byte").run([&] {
28 ctx.Crypt(in, out);
29 });
30}
31
32static void FSCHACHA20POLY1305(benchmark::Bench& bench, size_t buffersize)
33{
34 std::vector<std::byte> key(32);
35 FSChaCha20Poly1305 ctx(key, 224);
36 std::vector<std::byte> in(buffersize);
37 std::vector<std::byte> aad;
38 std::vector<std::byte> out(buffersize + FSChaCha20Poly1305::EXPANSION);
39 bench.batch(in.size()).unit("byte").run([&] {
40 ctx.Encrypt(in, aad, out);
41 });
42}
43
45{
47}
48
50{
52}
53
54static void CHACHA20_1MB(benchmark::Bench& bench)
55{
57}
58
60{
62}
63
65{
67}
68
70{
72}
73
static const uint64_t BUFFER_SIZE_LARGE
Definition: chacha20.cpp:18
BENCHMARK(CHACHA20_64BYTES, benchmark::PriorityLevel::HIGH)
static void FSCHACHA20POLY1305(benchmark::Bench &bench, size_t buffersize)
Definition: chacha20.cpp:32
static void CHACHA20_256BYTES(benchmark::Bench &bench)
Definition: chacha20.cpp:49
static void CHACHA20(benchmark::Bench &bench, size_t buffersize)
Definition: chacha20.cpp:20
static const uint64_t BUFFER_SIZE_TINY
Definition: chacha20.cpp:16
static void CHACHA20_1MB(benchmark::Bench &bench)
Definition: chacha20.cpp:54
static void CHACHA20_64BYTES(benchmark::Bench &bench)
Definition: chacha20.cpp:44
static void FSCHACHA20POLY1305_64BYTES(benchmark::Bench &bench)
Definition: chacha20.cpp:59
static const uint64_t BUFFER_SIZE_SMALL
Definition: chacha20.cpp:17
static void FSCHACHA20POLY1305_1MB(benchmark::Bench &bench)
Definition: chacha20.cpp:69
static void FSCHACHA20POLY1305_256BYTES(benchmark::Bench &bench)
Definition: chacha20.cpp:64
Unrestricted ChaCha20 cipher.
Definition: chacha20.h:78
Forward-secure wrapper around AEADChaCha20Poly1305.
static constexpr auto EXPANSION
Expansion when encrypting.
void Encrypt(Span< const std::byte > plain, Span< const std::byte > aad, Span< std::byte > cipher) noexcept
Encrypt a message with a specified aad.
Main entry point to nanobench's benchmarking facility.
Definition: nanobench.h:627
Bench & run(char const *benchmarkName, Op &&op)
Repeatedly calls op() based on the configuration, and performs measurements.
Definition: nanobench.h:1234
Bench & batch(T b) noexcept
Sets the batch size.
Definition: nanobench.h:1258
Bench & unit(char const *unit)
Sets the operation unit.
@ HIGH
Definition: bench.h:48