4b04e32c20
Three categories of modifications: 1) 1 instance of 'The Bitcoin Core developers \n', 1 instance of 'the Bitcoin Core developers\n', 3 instances of 'Bitcoin Core Developers\n', and 12 instances of 'The Bitcoin developers\n' are made uniform with the 443 instances of 'The Bitcoin Core developers\n' 2) 3 instances of 'BitPay, Inc\.\n' are made uniform with the other 6 instances of 'BitPay Inc\.\n' 3) 4 instances where there was no '(c)' between the 'Copyright' and the year where it deviates from the style of the local directory.
56 lines
1.3 KiB
C++
56 lines
1.3 KiB
C++
// Copyright (c) 2016 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.h"
|
|
|
|
#include "main.h"
|
|
#include "base58.h"
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
|
|
static void Base58Encode(benchmark::State& state)
|
|
{
|
|
unsigned char buff[32] = {
|
|
17, 79, 8, 99, 150, 189, 208, 162, 22, 23, 203, 163, 36, 58, 147,
|
|
227, 139, 2, 215, 100, 91, 38, 11, 141, 253, 40, 117, 21, 16, 90,
|
|
200, 24
|
|
};
|
|
unsigned char* b = buff;
|
|
while (state.KeepRunning()) {
|
|
EncodeBase58(b, b + 32);
|
|
}
|
|
}
|
|
|
|
|
|
static void Base58CheckEncode(benchmark::State& state)
|
|
{
|
|
unsigned char buff[32] = {
|
|
17, 79, 8, 99, 150, 189, 208, 162, 22, 23, 203, 163, 36, 58, 147,
|
|
227, 139, 2, 215, 100, 91, 38, 11, 141, 253, 40, 117, 21, 16, 90,
|
|
200, 24
|
|
};
|
|
unsigned char* b = buff;
|
|
std::vector<unsigned char> vch;
|
|
vch.assign(b, b + 32);
|
|
while (state.KeepRunning()) {
|
|
EncodeBase58Check(vch);
|
|
}
|
|
}
|
|
|
|
|
|
static void Base58Decode(benchmark::State& state)
|
|
{
|
|
const char* addr = "17VZNX1SN5NtKa8UQFxwQbFeFc3iqRYhem";
|
|
std::vector<unsigned char> vch;
|
|
while (state.KeepRunning()) {
|
|
DecodeBase58(addr, vch);
|
|
}
|
|
}
|
|
|
|
|
|
BENCHMARK(Base58Encode);
|
|
BENCHMARK(Base58CheckEncode);
|
|
BENCHMARK(Base58Decode);
|