Bitcoin Core 31.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
obfuscation.cpp
Go to the documentation of this file.
1// Copyright (c) The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or https://opensource.org/license/mit/.
4
5#include <bench/bench.h>
6#include <random.h>
7#include <util/obfuscation.h>
8
9#include <cstddef>
10#include <vector>
11
13{
14 FastRandomContext frc{/*fDeterministic=*/true};
15 auto data{frc.randbytes<std::byte>(1024)};
17
18 size_t offset{0};
19 bench.batch(data.size()).unit("byte").run([&] {
20 obfuscation(data, offset++); // mutated differently each time
22 });
23}
24
#define BENCHMARK(n)
Definition bench.h:68
Fast randomness source.
Definition random.h:386
static constexpr size_t KEY_SIZE
Definition obfuscation.h:23
Main entry point to nanobench's benchmarking facility.
Definition nanobench.h:627
void doNotOptimizeAway(Arg &&arg)
Makes sure none of the given arguments are optimized away by the compiler.
Definition nanobench.h:1279
static void ObfuscationBench(benchmark::Bench &bench)
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.
Definition time.h:73