Added module for hashing
This commit is contained in:
18
GCryptCLI/include/ModuleHashing.h
Normal file
18
GCryptCLI/include/ModuleHashing.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef GCRYPTCLI_MODULE_HASHING_H
|
||||
#define GCRYPTCLI_MODULE_HASHING_H
|
||||
|
||||
namespace Module {
|
||||
//! This module will hash supplied input
|
||||
class Hashing {
|
||||
public:
|
||||
//! Will run the module
|
||||
static void Run();
|
||||
|
||||
private:
|
||||
// No instanciation! >:(
|
||||
Hashing() {};
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user