15 lines
295 B
C++
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
|
|
|