mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 21:02:38 -03:00
f47dda2c58
-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT- Commits of previous years: * 2020:fa0074e2d8
* 2019:aaaaad6ac9
36 lines
1 KiB
C++
36 lines
1 KiB
C++
// Copyright (c) 2018-2021 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <bench/bench.h>
|
|
|
|
#include <bech32.h>
|
|
#include <util/strencodings.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
|
|
static void Bech32Encode(benchmark::Bench& bench)
|
|
{
|
|
std::vector<uint8_t> v = ParseHex("c97f5a67ec381b760aeaf67573bc164845ff39a3bb26a1cee401ac67243b48db");
|
|
std::vector<unsigned char> tmp = {0};
|
|
tmp.reserve(1 + 32 * 8 / 5);
|
|
ConvertBits<8, 5, true>([&](unsigned char c) { tmp.push_back(c); }, v.begin(), v.end());
|
|
bench.batch(v.size()).unit("byte").run([&] {
|
|
bech32::Encode(bech32::Encoding::BECH32, "bc", tmp);
|
|
});
|
|
}
|
|
|
|
|
|
static void Bech32Decode(benchmark::Bench& bench)
|
|
{
|
|
std::string addr = "bc1qkallence7tjawwvy0dwt4twc62qjgaw8f4vlhyd006d99f09";
|
|
bench.batch(addr.size()).unit("byte").run([&] {
|
|
bech32::Decode(addr);
|
|
});
|
|
}
|
|
|
|
|
|
BENCHMARK(Bech32Encode);
|
|
BENCHMARK(Bech32Decode);
|