Sophisticated and bug-fixed DataOutput/InputLayer, and added ModuleDecryption

This commit is contained in:
Leonetienne
2022-05-31 21:40:13 +02:00
parent 1a11f406e4
commit cc6b05dd12
9 changed files with 214 additions and 39 deletions
+5
View File
@@ -3,6 +3,7 @@
#include "KeyManager.h"
#include "ModuleGenerateKey.h"
#include "ModuleEncryption.h"
#include "ModuleDecryption.h"
int main(int argc, char* const* argv) {
@@ -24,6 +25,10 @@ int main(int argc, char* const* argv) {
case Configuration::MODULE::ENCRYPTION:
Module::Encryption::Run();
break;
case Configuration::MODULE::DECRYPTION:
Module::Decryption::Run();
break;
}
return 0;