Dash Core Source Documentation (0.16.0.1)

Find detailed information regarding the Dash Core source code.

chacha20.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 <hash.h>
9 #include <crypto/chacha20.h>
10 
11 /* Number of bytes to process per iteration */
12 static const uint64_t BUFFER_SIZE_TINY = 64;
13 static const uint64_t BUFFER_SIZE_SMALL = 256;
14 static const uint64_t BUFFER_SIZE_LARGE = 1024*1024;
15 
16 static void CHACHA20(benchmark::State& state, size_t buffersize)
17 {
18  std::vector<uint8_t> key(32,0);
19  ChaCha20 ctx(key.data(), key.size());
20  ctx.SetIV(0);
21  ctx.Seek(0);
22  std::vector<uint8_t> in(buffersize,0);
23  std::vector<uint8_t> out(buffersize,0);
24  while (state.KeepRunning()) {
25  ctx.Crypt(in.data(), out.data(), in.size());
26  }
27 }
28 
30 {
31  CHACHA20(state, BUFFER_SIZE_TINY);
32 }
33 
35 {
37 }
38 
39 static void CHACHA20_1MB(benchmark::State& state)
40 {
42 }
43 
44 //TODO add back below once benchmarking backports are done
45 //BENCHMARK(CHACHA20_64BYTES, 500000);
46 //BENCHMARK(CHACHA20_256BYTES, 250000);
47 //BENCHMARK(CHACHA20_1MB, 340);
51 
static void CHACHA20(benchmark::State &state, size_t buffersize)
Definition: chacha20.cpp:16
static const uint64_t BUFFER_SIZE_SMALL
Definition: chacha20.cpp:13
static const uint64_t BUFFER_SIZE_LARGE
Definition: chacha20.cpp:14
static void CHACHA20_1MB(benchmark::State &state)
Definition: chacha20.cpp:39
bool KeepRunning()
Definition: bench.cpp:39
static void CHACHA20_256BYTES(benchmark::State &state)
Definition: chacha20.cpp:34
static void CHACHA20_64BYTES(benchmark::State &state)
Definition: chacha20.cpp:29
A class for ChaCha20 256-bit stream cipher developed by Daniel J.
Definition: chacha20.h:13
static secp256k1_context * ctx
Definition: tests.c:46
BENCHMARK(CHACHA20_64BYTES)
static const uint64_t BUFFER_SIZE_TINY
Definition: chacha20.cpp:12
Released under the MIT license