Bitcoin Core 28.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
ellswift.cpp
Go to the documentation of this file.
1// Copyright (c) 2022-2023 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 <bench/bench.h>
6
7#include <key.h>
8#include <random.h>
9
11{
13
14 CKey key = GenerateRandomKey();
15 uint256 entropy = GetRandHash();
16
17 bench.batch(1).unit("pubkey").run([&] {
18 auto ret = key.EllSwiftCreate(MakeByteSpan(entropy));
19 /* Use the first 32 bytes of the ellswift encoded public key as next private key. */
20 key.Set(ret.data(), ret.data() + 32, true);
21 assert(key.IsValid());
22 /* Use the last 32 bytes of the ellswift encoded public key as next entropy. */
23 std::copy(ret.begin() + 32, ret.begin() + 64, MakeWritableByteSpan(entropy).begin());
24 });
25}
26
#define BENCHMARK(n, priority_level)
Definition bench.h:79
int ret
ECC_Context ecc_context
An encapsulated private key.
Definition key.h:35
bool IsValid() const
Check whether this private key is valid.
Definition key.h:123
void Set(const T pbegin, const T pend, bool fCompressedIn)
Initialize using begin and end iterators to byte data.
Definition key.h:103
EllSwiftPubKey EllSwiftCreate(Span< const std::byte > entropy) const
Create an ellswift-encoded public key for this key, with specified entropy.
Definition key.cpp:311
RAII class initializing and deinitializing global state for elliptic curve support.
Definition key.h:322
Main entry point to nanobench's benchmarking facility.
Definition nanobench.h:627
Bench & run(char const *benchmarkName, Op &&op)
Repeatedly calls op() based on the configuration, and performs measurements.
Definition nanobench.h:1234
Bench & batch(T b) noexcept
Sets the batch size.
Definition nanobench.h:1258
Bench & unit(char const *unit)
Sets the operation unit.
256-bit opaque blob.
Definition uint256.h:178
static void EllSwiftCreate(benchmark::Bench &bench)
Definition ellswift.cpp:10
CKey GenerateRandomKey(bool compressed) noexcept
Definition key.cpp:352
@ HIGH
Definition bench.h:47
uint256 GetRandHash() noexcept
Generate a random uint256.
Definition random.h:454
Span< const std::byte > MakeByteSpan(V &&v) noexcept
Definition span.h:277
Span< std::byte > MakeWritableByteSpan(V &&v) noexcept
Definition span.h:282
assert(!tx.IsCoinBase())