GCrypt/GCryptCLI/include/ModuleHashing.h

19 lines
295 B
C
Raw Normal View History

2022-06-01 02:09:49 +02:00
#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