mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 05:49:11 +01:00
3c5dcb036a
084e17cebd424b8e8ced674bc810eef4e6ee5d3b Remove unused includes (practicalswift) Pull request description: As requested by MarcoFalke in https://github.com/bitcoin/bitcoin/pull/16273#issuecomment-521332089: This PR removes unused includes. Please note that in contrast to #16273 I'm limiting the scope to the trivial cases of pure removals (i.e. no includes added) to make reviewing easier. I'm seeking "Concept ACK":s for this obviously non-urgent minor cleanup. Rationale: * Avoids unnecessary re-compiles in case of header changes. * Makes reasoning about code dependencies easier. * Reduces compile-time memory usage. * Reduces compilation time. * Warm fuzzy feeling of being lean :-) ACKs for top commit: ryanofsky: Code review ACK 084e17cebd424b8e8ced674bc810eef4e6ee5d3b. PR only removes include lines and it still compiles. In the worst case someone might have to explicitly add an include later for something now included implicitly. But maybe some effort was taken to avoid this, and it wouldn't be a tragedy anyway. Tree-SHA512: 89de56edc6ceea4696e9579bccff10c80080821685b9fb4e8c5ef593b6e43cf662f358788701bb09f84867693f66b2e4db035b92b522a0a775f50b7ecffd6a6d
124 lines
4.0 KiB
C++
124 lines
4.0 KiB
C++
// Copyright (c) 2019 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 <crypto/chacha_poly_aead.h>
|
|
#include <crypto/poly1305.h> // for the POLY1305_TAGLEN constant
|
|
#include <hash.h>
|
|
|
|
#include <limits>
|
|
#include <assert.h>
|
|
|
|
/* Number of bytes to process per iteration */
|
|
static constexpr uint64_t BUFFER_SIZE_TINY = 64;
|
|
static constexpr uint64_t BUFFER_SIZE_SMALL = 256;
|
|
static constexpr uint64_t BUFFER_SIZE_LARGE = 1024 * 1024;
|
|
|
|
static const unsigned char k1[32] = {0};
|
|
static const unsigned char k2[32] = {0};
|
|
|
|
static ChaCha20Poly1305AEAD aead(k1, 32, k2, 32);
|
|
|
|
static void CHACHA20_POLY1305_AEAD(benchmark::Bench& bench, size_t buffersize, bool include_decryption)
|
|
{
|
|
std::vector<unsigned char> in(buffersize + CHACHA20_POLY1305_AEAD_AAD_LEN + POLY1305_TAGLEN, 0);
|
|
std::vector<unsigned char> out(buffersize + CHACHA20_POLY1305_AEAD_AAD_LEN + POLY1305_TAGLEN, 0);
|
|
uint64_t seqnr_payload = 0;
|
|
uint64_t seqnr_aad = 0;
|
|
int aad_pos = 0;
|
|
uint32_t len = 0;
|
|
bench.batch(buffersize).unit("byte").run([&] {
|
|
// encrypt or decrypt the buffer with a static key
|
|
assert(aead.Crypt(seqnr_payload, seqnr_aad, aad_pos, out.data(), out.size(), in.data(), buffersize, true));
|
|
|
|
if (include_decryption) {
|
|
// if we decrypt, include the GetLength
|
|
assert(aead.GetLength(&len, seqnr_aad, aad_pos, in.data()));
|
|
assert(aead.Crypt(seqnr_payload, seqnr_aad, aad_pos, out.data(), out.size(), in.data(), buffersize, true));
|
|
}
|
|
|
|
// increase main sequence number
|
|
seqnr_payload++;
|
|
// increase aad position (position in AAD keystream)
|
|
aad_pos += CHACHA20_POLY1305_AEAD_AAD_LEN;
|
|
if (aad_pos + CHACHA20_POLY1305_AEAD_AAD_LEN > CHACHA20_ROUND_OUTPUT) {
|
|
aad_pos = 0;
|
|
seqnr_aad++;
|
|
}
|
|
if (seqnr_payload + 1 == std::numeric_limits<uint64_t>::max()) {
|
|
// reuse of nonce+key is okay while benchmarking.
|
|
seqnr_payload = 0;
|
|
seqnr_aad = 0;
|
|
aad_pos = 0;
|
|
}
|
|
});
|
|
}
|
|
|
|
static void CHACHA20_POLY1305_AEAD_64BYTES_ONLY_ENCRYPT(benchmark::Bench& bench)
|
|
{
|
|
CHACHA20_POLY1305_AEAD(bench, BUFFER_SIZE_TINY, false);
|
|
}
|
|
|
|
static void CHACHA20_POLY1305_AEAD_256BYTES_ONLY_ENCRYPT(benchmark::Bench& bench)
|
|
{
|
|
CHACHA20_POLY1305_AEAD(bench, BUFFER_SIZE_SMALL, false);
|
|
}
|
|
|
|
static void CHACHA20_POLY1305_AEAD_1MB_ONLY_ENCRYPT(benchmark::Bench& bench)
|
|
{
|
|
CHACHA20_POLY1305_AEAD(bench, BUFFER_SIZE_LARGE, false);
|
|
}
|
|
|
|
static void CHACHA20_POLY1305_AEAD_64BYTES_ENCRYPT_DECRYPT(benchmark::Bench& bench)
|
|
{
|
|
CHACHA20_POLY1305_AEAD(bench, BUFFER_SIZE_TINY, true);
|
|
}
|
|
|
|
static void CHACHA20_POLY1305_AEAD_256BYTES_ENCRYPT_DECRYPT(benchmark::Bench& bench)
|
|
{
|
|
CHACHA20_POLY1305_AEAD(bench, BUFFER_SIZE_SMALL, true);
|
|
}
|
|
|
|
static void CHACHA20_POLY1305_AEAD_1MB_ENCRYPT_DECRYPT(benchmark::Bench& bench)
|
|
{
|
|
CHACHA20_POLY1305_AEAD(bench, BUFFER_SIZE_LARGE, true);
|
|
}
|
|
|
|
// Add Hash() (dbl-sha256) bench for comparison
|
|
|
|
static void HASH(benchmark::Bench& bench, size_t buffersize)
|
|
{
|
|
uint8_t hash[CHash256::OUTPUT_SIZE];
|
|
std::vector<uint8_t> in(buffersize,0);
|
|
bench.batch(in.size()).unit("byte").run([&] {
|
|
CHash256().Write(in).Finalize(hash);
|
|
});
|
|
}
|
|
|
|
static void HASH_64BYTES(benchmark::Bench& bench)
|
|
{
|
|
HASH(bench, BUFFER_SIZE_TINY);
|
|
}
|
|
|
|
static void HASH_256BYTES(benchmark::Bench& bench)
|
|
{
|
|
HASH(bench, BUFFER_SIZE_SMALL);
|
|
}
|
|
|
|
static void HASH_1MB(benchmark::Bench& bench)
|
|
{
|
|
HASH(bench, BUFFER_SIZE_LARGE);
|
|
}
|
|
|
|
BENCHMARK(CHACHA20_POLY1305_AEAD_64BYTES_ONLY_ENCRYPT);
|
|
BENCHMARK(CHACHA20_POLY1305_AEAD_256BYTES_ONLY_ENCRYPT);
|
|
BENCHMARK(CHACHA20_POLY1305_AEAD_1MB_ONLY_ENCRYPT);
|
|
BENCHMARK(CHACHA20_POLY1305_AEAD_64BYTES_ENCRYPT_DECRYPT);
|
|
BENCHMARK(CHACHA20_POLY1305_AEAD_256BYTES_ENCRYPT_DECRYPT);
|
|
BENCHMARK(CHACHA20_POLY1305_AEAD_1MB_ENCRYPT_DECRYPT);
|
|
BENCHMARK(HASH_64BYTES);
|
|
BENCHMARK(HASH_256BYTES);
|
|
BENCHMARK(HASH_1MB);
|