19 lines
295 B
C
19 lines
295 B
C
|
#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
|
||
|
|