GCrypt/GCryptCLI/include/ModuleGenerateKeyfile.h
2022-05-27 17:04:16 +02:00

15 lines
295 B
C++

#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