Bitcoin Core 22.99.0
P2P Digital Currency
chacha_poly_aead.cpp
Go to the documentation of this file.
1// Copyright (c) 2019-2020 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>
8#include <crypto/poly1305.h> // for the POLY1305_TAGLEN constant
9#include <hash.h>
10
11#include <assert.h>
12#include <limits>
13
14/* Number of bytes to process per iteration */
15static constexpr uint64_t BUFFER_SIZE_TINY = 64;
16static constexpr uint64_t BUFFER_SIZE_SMALL = 256;
17static constexpr uint64_t BUFFER_SIZE_LARGE = 1024 * 1024;
18
19static const unsigned char k1[32] = {0};
20static const unsigned char k2[32] = {0};
21
22static ChaCha20Poly1305AEAD aead(k1, 32, k2, 32);
23
24static void CHACHA20_POLY1305_AEAD(benchmark::Bench& bench, size_t buffersize, bool include_decryption)
25{
26 std::vector<unsigned char> in(buffersize + CHACHA20_POLY1305_AEAD_AAD_LEN + POLY1305_TAGLEN, 0);
27 std::vector<unsigned char> out(buffersize + CHACHA20_POLY1305_AEAD_AAD_LEN + POLY1305_TAGLEN, 0);
28 uint64_t seqnr_payload = 0;
29 uint64_t seqnr_aad = 0;
30 int aad_pos = 0;
31 uint32_t len = 0;
32 bench.batch(buffersize).unit("byte").run([&] {
33 // encrypt or decrypt the buffer with a static key
34 const bool crypt_ok_1 = aead.Crypt(seqnr_payload, seqnr_aad, aad_pos, out.data(), out.size(), in.data(), buffersize, true);
35 assert(crypt_ok_1);
36
37 if (include_decryption) {
38 // if we decrypt, include the GetLength
39 const bool get_length_ok = aead.GetLength(&len, seqnr_aad, aad_pos, in.data());
40 assert(get_length_ok);
41 const bool crypt_ok_2 = aead.Crypt(seqnr_payload, seqnr_aad, aad_pos, out.data(), out.size(), in.data(), buffersize, true);
42 assert(crypt_ok_2);
43 }
44
45 // increase main sequence number
46 seqnr_payload++;
47 // increase aad position (position in AAD keystream)
50 aad_pos = 0;
51 seqnr_aad++;
52 }
53 if (seqnr_payload + 1 == std::numeric_limits<uint64_t>::max()) {
54 // reuse of nonce+key is okay while benchmarking.
55 seqnr_payload = 0;
56 seqnr_aad = 0;
57 aad_pos = 0;
58 }
59 });
60}
61
63{
65}
66
68{
70}
71
73{
75}
76
78{
80}
81
83{
85}
86
88{
90}
91
92// Add Hash() (dbl-sha256) bench for comparison
93
94static void HASH(benchmark::Bench& bench, size_t buffersize)
95{
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}
102
104{
105 HASH(bench, BUFFER_SIZE_TINY);
106}
107
109{
110 HASH(bench, BUFFER_SIZE_SMALL);
111}
112
113static void HASH_1MB(benchmark::Bench& bench)
114{
115 HASH(bench, BUFFER_SIZE_LARGE);
116}
117
static void CHACHA20_POLY1305_AEAD_256BYTES_ENCRYPT_DECRYPT(benchmark::Bench &bench)
static constexpr uint64_t BUFFER_SIZE_LARGE
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 const unsigned char k1[32]
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 const unsigned char k2[32]
static void HASH_64BYTES(benchmark::Bench &bench)
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:24
void Finalize(Span< unsigned char > output)
Definition: hash.h:30
CHash256 & Write(Span< const unsigned char > input)
Definition: hash.h:37
static const size_t OUTPUT_SIZE
Definition: hash.h:28
bool Crypt(uint64_t seqnr_payload, uint64_t seqnr_aad, int aad_pos, unsigned char *dest, size_t dest_len, const unsigned char *src, size_t src_len, bool is_encrypt)
Encrypts/decrypts a packet seqnr_payload, the message sequence number seqnr_aad, the messages AAD seq...
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())