BSHA3  0.17.99
P2P Blockchain, based on Bitcoin
bech32.cpp
Go to the documentation of this file.
1 // Copyright (c) 2018 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 <validation.h>
8 #include <bech32.h>
9 #include <utilstrencodings.h>
10 
11 #include <vector>
12 #include <string>
13 
14 
15 static void Bech32Encode(benchmark::State& state)
16 {
17  std::vector<uint8_t> v = ParseHex("c97f5a67ec381b760aeaf67573bc164845ff39a3bb26a1cee401ac67243b48db");
18  std::vector<unsigned char> tmp = {0};
19  tmp.reserve(1 + 32 * 8 / 5);
20  ConvertBits<8, 5, true>([&](unsigned char c) { tmp.push_back(c); }, v.begin(), v.end());
21  while (state.KeepRunning()) {
22  bech32::Encode("bc", tmp);
23  }
24 }
25 
26 
27 static void Bech32Decode(benchmark::State& state)
28 {
29  std::string addr = "bc1qkallence7tjawwvy0dwt4twc62qjgaw8f4vlhyd006d99f09";
30  while (state.KeepRunning()) {
31  bech32::Decode(addr);
32  }
33 }
34 
35 
36 BENCHMARK(Bech32Encode, 800 * 1000);
37 BENCHMARK(Bech32Decode, 800 * 1000);
BENCHMARK(Bech32Encode, 800 *1000)
bool KeepRunning()
Definition: bench.h:70
std::pair< std::string, data > Decode(const std::string &str)
Decode a Bech32 string.
Definition: bech32.cpp:159
std::string Encode(const std::string &hrp, const data &values)
Encode a Bech32 string.
Definition: bech32.cpp:147
std::vector< unsigned char > ParseHex(const char *psz)