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

This commit is contained in:
Leonetienne
2022-05-31 21:40:13 +02:00
parent d9fb90a01e
commit a93b3b3fe5
9 changed files with 214 additions and 39 deletions

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;