GCrypt/GhettoCrypt/Config.h

9 lines
147 B
C
Raw Normal View History

2021-12-05 22:40:36 +01:00
#pragma once
2022-02-06 18:38:09 +01:00
#include <cstddef>
2021-12-05 22:40:36 +01:00
2021-12-06 02:20:47 +01:00
namespace GhettoCipher
{
2021-12-06 13:22:48 +01:00
constexpr std::size_t BLOCK_SIZE = 512;
constexpr std::size_t N_ROUNDS = 64;
2021-12-06 02:20:47 +01:00
}