Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
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
26 bool include_decryption) {
27 std::vector<uint8_t> in(
29 std::vector<uint8_t> out(
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
38 out.size(), in.data(), buffersize, true));
39
41 // if we decrypt, include the GetLength
44 out.size(), in.data(), buffersize, true));
45 }
46
47 // increase main sequence number
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
68
69static void
73
77
78static void
82
83static void
87
88static void
92
93// Add Hash() (dbl-sha256) bench for comparison
94
95static void HASH(benchmark::Bench &bench, size_t buffersize) {
97 std::vector<uint8_t> in(buffersize, 0);
98 bench.batch(in.size()).unit("byte").run(
99 [&] { CHash256().Write(in).Finalize(hash); });
100}
101
105
109
113
#define BENCHMARK(n)
Definition bench.h:65
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
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
#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
assert(!tx.IsCoinBase())