Implemented GPrng pnrg

This commit is contained in:
Leonetienne
2022-05-22 16:54:40 +02:00
parent 0c1bbf362e
commit 5770a0d45a
8 changed files with 165 additions and 1 deletions
+6
View File
@@ -240,6 +240,12 @@ namespace Leonetienne::GCrypt {
return;
}
void Feistel::operator=(const Feistel& other) {
roundKeys = other.roundKeys;
return;
}
// These pragmas only work for MSVC and g++, as far as i know. Beware!!!
#if defined _WIN32 || defined _WIN64
#pragma optimize("", off )