Added nice tip to config.h

This commit is contained in:
Leonetienne 2022-02-06 22:04:22 +01:00
parent 09ad0af688
commit 653f647fc6

View File

@ -3,6 +3,9 @@
namespace GhettoCipher namespace GhettoCipher
{ {
// MUST BE A POWER OF 2 > 4
constexpr std::size_t BLOCK_SIZE = 512; constexpr std::size_t BLOCK_SIZE = 512;
// MUST BE > 2
constexpr std::size_t N_ROUNDS = 64; constexpr std::size_t N_ROUNDS = 64;
} }