Implement GenerateKeyfile module

This commit is contained in:
Leonetienne
2022-05-27 17:04:16 +02:00
parent 191b17c631
commit 93be4d9cdc
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef GCRYPTCLI_MODULE_GENERATEKEYFILE_H
#define GCRYPTCLI_MODULE_GENERATEKEYFILE_H
namespace Module {
// This class has the task to prepare and supply the encryption key.
class GenerateKeyfile {
public:
//! Will write the key to a file
static void Run();
};
}
#endif