Bitcoin Core
31.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
src
bench
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
12
static
void
ObfuscationBench
(
benchmark::Bench
&
bench
)
13
{
14
FastRandomContext
frc
{
/*fDeterministic=*/
true
};
15
auto
data{
frc
.randbytes<std::byte>(1024)};
16
const
Obfuscation
obfuscation
{
frc
.randbytes<
Obfuscation::KEY_SIZE
>()};
17
18
size_t
offset{0};
19
bench
.batch(data.size()).unit(
"byte"
).run([&] {
20
obfuscation
(data, offset++);
// mutated differently each time
21
ankerl::nanobench::doNotOptimizeAway
(data);
22
});
23
}
24
25
BENCHMARK
(
ObfuscationBench
);
bench.h
BENCHMARK
#define BENCHMARK(n)
Definition
bench.h:68
FastRandomContext
Fast randomness source.
Definition
random.h:386
Obfuscation
Definition
obfuscation.h:20
Obfuscation::KEY_SIZE
static constexpr size_t KEY_SIZE
Definition
obfuscation.h:23
ankerl::nanobench::Bench
Main entry point to nanobench's benchmarking facility.
Definition
nanobench.h:627
ankerl::nanobench::doNotOptimizeAway
void doNotOptimizeAway(Arg &&arg)
Makes sure none of the given arguments are optimized away by the compiler.
Definition
nanobench.h:1279
ObfuscationBench
static void ObfuscationBench(benchmark::Bench &bench)
Definition
obfuscation.cpp:12
obfuscation.h
Ticks
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.
Definition
time.h:73
Generated on Thu Apr 16 2026 09:42:38 for Bitcoin Core by
1.10.0