Added module for hashing

This commit is contained in:
Leonetienne
2022-06-01 02:09:49 +02:00
parent bf8a6454ae
commit ffea2bfb5b
4 changed files with 88 additions and 9 deletions

View 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