Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F12945039
chacha20.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
chacha20.cpp
View Options
// 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
<iostream>
#include
<bench/bench.h>
#include
<crypto/chacha20.h>
#include
<hash.h>
/* Number of bytes to process per iteration */
static
const
uint64_t
BUFFER_SIZE_TINY
=
64
;
static
const
uint64_t
BUFFER_SIZE_SMALL
=
256
;
static
const
uint64_t
BUFFER_SIZE_LARGE
=
1024
*
1024
;
static
void
CHACHA20
(
benchmark
::
Bench
&
bench
,
size_t
buffersize
)
{
std
::
vector
<
uint8_t
>
key
(
32
,
0
);
ChaCha20
ctx
(
key
.
data
(),
key
.
size
());
ctx
.
SetIV
(
0
);
ctx
.
Seek
(
0
);
std
::
vector
<
uint8_t
>
in
(
buffersize
,
0
);
std
::
vector
<
uint8_t
>
out
(
buffersize
,
0
);
bench
.
batch
(
in
.
size
()).
unit
(
"byte"
).
run
(
[
&
]
{
ctx
.
Crypt
(
in
.
data
(),
out
.
data
(),
in
.
size
());
});
}
static
void
CHACHA20_64BYTES
(
benchmark
::
Bench
&
bench
)
{
CHACHA20
(
bench
,
BUFFER_SIZE_TINY
);
}
static
void
CHACHA20_256BYTES
(
benchmark
::
Bench
&
bench
)
{
CHACHA20
(
bench
,
BUFFER_SIZE_SMALL
);
}
static
void
CHACHA20_1MB
(
benchmark
::
Bench
&
bench
)
{
CHACHA20
(
bench
,
BUFFER_SIZE_LARGE
);
}
BENCHMARK
(
CHACHA20_64BYTES
);
BENCHMARK
(
CHACHA20_256BYTES
);
BENCHMARK
(
CHACHA20_1MB
);
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Fri, Feb 7, 17:21 (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5080655
Default Alt Text
chacha20.cpp (1 KB)
Attached To
rABC Bitcoin ABC
Event Timeline
Log In to Comment