GCrypt/GCryptCLI/include/ModuleEncryption.h
2022-05-31 17:35:05 +02:00

19 lines
310 B
C++

#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