Bitcoin ABC 0.30.5
P2P Digital Currency
chacha_poly_aead.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>
9#include <crypto/poly1305.h> // for the POLY1305_TAGLEN constant
10#include <hash.h>
11
12#include <cassert>
13#include <limits>
14
15/* Number of bytes to process per iteration */
16static constexpr uint64_t BUFFER_SIZE_TINY = 64;
17static constexpr uint64_t BUFFER_SIZE_SMALL = 256;
18static constexpr uint64_t BUFFER_SIZE_LARGE = 1024 * 1024;
19
20static const uint8_t k1[32] = {0};
21static const uint8_t k2[32] = {0};
22
23static ChaCha20Poly1305AEAD aead(k1, 32, k2, 32);
24
25static void CHACHA20_POLY1305_AEAD(benchmark::Bench &bench, size_t buffersize,
26 bool include_decryption) {
27 std::vector<uint8_t> in(
29 std::vector<uint8_t> out(
31 uint64_t seqnr_payload = 0;
32 uint64_t seqnr_aad = 0;
33 int aad_pos = 0;
34 uint32_t len = 0;
35 bench.batch(buffersize).unit("byte").run([&] {
36 // encrypt or decrypt the buffer with a static key
37 assert(aead.Crypt(seqnr_payload, seqnr_aad, aad_pos, out.data(),
38 out.size(), in.data(), buffersize, true));
39
40 if (include_decryption) {
41 // if we decrypt, include the GetLength
42 assert(aead.GetLength(&len, seqnr_aad, aad_pos, in.data()));
43 assert(aead.Crypt(seqnr_payload, seqnr_aad, aad_pos, out.data(),
44 out.size(), in.data(), buffersize, true));
45 }
46
47 // increase main sequence number
48 seqnr_payload++;
49 // increase aad position (position in AAD keystream)
52 aad_pos = 0;
53 seqnr_aad++;
54 }
55 if (seqnr_payload + 1 == std::numeric_limits<uint64_t>::max()) {
56 // reuse of nonce+key is okay while benchmarking.
57 seqnr_payload = 0;
58 seqnr_aad = 0;
59 aad_pos = 0;
60 }
61 });
62}
63
64static void
67}
68
69static void
72}
73
76}
77
78static void
81}
82
83static void
86}
87
88static void
91}
92
93// Add Hash() (dbl-sha256) bench for comparison
94
95static void HASH(benchmark::Bench &bench, size_t buffersize) {
96 uint8_t hash[CHash256::OUTPUT_SIZE];
97 std::vector<uint8_t> in(buffersize, 0);
98 bench.batch(in.size()).unit("byte").run(
99 [&] { CHash256().Write(in).Finalize(hash); });
100}
101
102static void HASH_64BYTES(benchmark::Bench &bench) {
103 HASH(bench, BUFFER_SIZE_TINY);
104}
105
106static void HASH_256BYTES(benchmark::Bench &bench) {
107 HASH(bench, BUFFER_SIZE_SMALL);
108}
109
110static void HASH_1MB(benchmark::Bench &bench) {
111 HASH(bench, BUFFER_SIZE_LARGE);
112}
113
static void CHACHA20_POLY1305_AEAD_256BYTES_ENCRYPT_DECRYPT(benchmark::Bench &bench)
static constexpr uint64_t BUFFER_SIZE_LARGE
static const uint8_t k1[32]
static void HASH_1MB(benchmark::Bench &bench)
static void CHACHA20_POLY1305_AEAD_1MB_ENCRYPT_DECRYPT(benchmark::Bench &bench)
static void CHACHA20_POLY1305_AEAD_256BYTES_ONLY_ENCRYPT(benchmark::Bench &bench)
static void CHACHA20_POLY1305_AEAD_64BYTES_ENCRYPT_DECRYPT(benchmark::Bench &bench)
static void HASH_256BYTES(benchmark::Bench &bench)
static constexpr uint64_t BUFFER_SIZE_TINY
static constexpr uint64_t BUFFER_SIZE_SMALL
BENCHMARK(CHACHA20_POLY1305_AEAD_64BYTES_ONLY_ENCRYPT)
static void CHACHA20_POLY1305_AEAD(benchmark::Bench &bench, size_t buffersize, bool include_decryption)
static ChaCha20Poly1305AEAD aead(k1, 32, k2, 32)
static void CHACHA20_POLY1305_AEAD_64BYTES_ONLY_ENCRYPT(benchmark::Bench &bench)
static void HASH(benchmark::Bench &bench, size_t buffersize)
static void CHACHA20_POLY1305_AEAD_1MB_ONLY_ENCRYPT(benchmark::Bench &bench)
static void HASH_64BYTES(benchmark::Bench &bench)
static const uint8_t k2[32]
static constexpr int CHACHA20_POLY1305_AEAD_AAD_LEN
static constexpr int CHACHA20_ROUND_OUTPUT
A hasher class for Bitcoin's 256-bit hash (double SHA-256).
Definition: hash.h:22
CHash256 & Write(Span< const uint8_t > input)
Definition: hash.h:36
void Finalize(Span< uint8_t > output)
Definition: hash.h:29
static const size_t OUTPUT_SIZE
Definition: hash.h:27
bool Crypt(uint64_t seqnr_payload, uint64_t seqnr_aad, int aad_pos, uint8_t *dest, size_t dest_len, const uint8_t *src, size_t src_len, bool is_encrypt)
Encrypts/decrypts a packet.
bool GetLength(uint32_t *len24_out, uint64_t seqnr_aad, int aad_pos, const uint8_t *ciphertext)
decrypts the 3 bytes AAD data and decodes it into a uint32_t field
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.
#define POLY1305_TAGLEN
Definition: poly1305.h:12
assert(!tx.IsCoinBase())