Fix flowbench build
This commit is contained in:
parent
9edfffb6a6
commit
078d67d5fb
|
@ -41,7 +41,7 @@ static void bench_encrypt(benchmark::State& state) {
|
||||||
auto bytes = state.range(0);
|
auto bytes = state.range(0);
|
||||||
auto chunks = state.range(1);
|
auto chunks = state.range(1);
|
||||||
auto chunkSize = bytes / chunks;
|
auto chunkSize = bytes / chunks;
|
||||||
StreamCipher::Key::initializeRandomKey();
|
StreamCipher::Key::initializeRandomTestKey();
|
||||||
const auto& key = StreamCipher::Key::getKey();
|
const auto& key = StreamCipher::Key::getKey();
|
||||||
auto iv = getRandomIV();
|
auto iv = getRandomIV();
|
||||||
auto data = getKey(bytes);
|
auto data = getKey(bytes);
|
||||||
|
@ -57,7 +57,7 @@ static void bench_decrypt(benchmark::State& state) {
|
||||||
auto bytes = state.range(0);
|
auto bytes = state.range(0);
|
||||||
auto chunks = state.range(1);
|
auto chunks = state.range(1);
|
||||||
auto chunkSize = bytes / chunks;
|
auto chunkSize = bytes / chunks;
|
||||||
StreamCipher::Key::initializeRandomKey();
|
StreamCipher::Key::initializeRandomTestKey();
|
||||||
const auto& key = StreamCipher::Key::getKey();
|
const auto& key = StreamCipher::Key::getKey();
|
||||||
auto iv = getRandomIV();
|
auto iv = getRandomIV();
|
||||||
auto data = getKey(bytes);
|
auto data = getKey(bytes);
|
||||||
|
|
Loading…
Reference in New Issue