Sophisticated and bug-fixed DataOutput/InputLayer, and added ModuleDecryption
This commit is contained in:
18
GCryptCLI/include/ModuleDecryption.h
Normal file
18
GCryptCLI/include/ModuleDecryption.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef GCRYPTCLI_MODULE_DECRYPTION_H
|
||||
#define GCRYPTCLI_MODULE_DECRYPTION_H
|
||||
|
||||
namespace Module {
|
||||
//! This module will decrypt supplied input
|
||||
class Decryption {
|
||||
public:
|
||||
//! Will run the module
|
||||
static void Run();
|
||||
|
||||
private:
|
||||
// No instanciation! >:(
|
||||
Decryption() {};
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user