Gcryptlib: new brace style, and moved to Leonetienne namespace

This commit is contained in:
Leonetienne
2022-05-16 22:15:34 +02:00
parent 70af3619a2
commit 243181944e
17 changed files with 917 additions and 901 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
#include "Cipher.h"
#include "InitializationVector.h"
namespace GhettoCipher {
namespace Leonetienne::GCrypt {
//! Mod-operator that works with negative values
inline int Mod(const int numerator, const int denominator) {
return (denominator + (numerator % denominator)) % denominator;