Added encryption module, and data output layer

This commit is contained in:
Leonetienne
2022-05-31 17:35:05 +02:00
parent a00b8cc310
commit fd75678ea3
6 changed files with 274 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
#ifndef GCRYPTCLI_MODULE_ENCRYPTION_H
#define GCRYPTCLI_MODULE_ENCRYPTION_H
namespace Module {
//! This module will encrypt supplied input
class Encryption {
public:
//! Will run the module
static void Run();
private:
// No instanciation! >:(
Encryption() {};
};
}
#endif