Gcryptlib: new brace style, and moved to Leonetienne namespace

This commit is contained in:
Leonetienne
2022-05-16 22:15:34 +02:00
parent c551f5fa64
commit acf9dea387
17 changed files with 917 additions and 901 deletions

View File

@@ -1,10 +1,10 @@
#pragma once
#include <cstddef>
namespace GhettoCipher {
// MUST BE A POWER OF 2 > 4
constexpr std::size_t BLOCK_SIZE = 512;
// MUST BE > 2
constexpr std::size_t N_ROUNDS = 64;
}
#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;
}