Files
GCrypt/GCryptLib/include/GCrypt/Config.h
2022-05-26 00:55:24 +02:00

13 lines
167 B
C++

#ifndef GCRYPT_CONFIG_H
#define GCRYPT_CONFIG_H
#include <cstddef>
namespace Leonetienne::GCrypt {
// MUST BE > 2
constexpr std::size_t N_ROUNDS = 6;
}
#endif