Doxygen adjustment, and better directory name for GCryptLib

This commit is contained in:
Leonetienne
2022-05-16 22:19:20 +02:00
parent acf9dea387
commit 7c556e5b3d
26 changed files with 4 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
#pragma once
#include <cstddef>
namespace Leonetienne::GCrypt {
// MUST BE A POWER OF 2 > 4
constexpr std::size_t BLOCK_SIZE = 512;
// MUST BE > 2
constexpr std::size_t N_ROUNDS = 64;
}