2022-05-22 17:29:38 +02:00
|
|
|
#ifndef GCRYPT_CONFIG_H
|
|
|
|
#define GCRYPT_CONFIG_H
|
|
|
|
|
2022-05-16 22:15:34 +02:00
|
|
|
#include <cstddef>
|
|
|
|
|
|
|
|
namespace Leonetienne::GCrypt {
|
|
|
|
// MUST BE > 2
|
2022-05-25 13:05:25 +02:00
|
|
|
constexpr std::size_t N_ROUNDS = 6;
|
2022-05-16 22:15:34 +02:00
|
|
|
}
|
2022-05-22 17:29:38 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|