16 lines
246 B
C++
16 lines
246 B
C++
|
#include "ModuleGenerateKey.h"
|
||
|
|
||
|
#include "KeyManager.h"
|
||
|
#include "CommandlineInterface.h"
|
||
|
|
||
|
using namespace Leonetienne::GCrypt;
|
||
|
using namespace Module;
|
||
|
|
||
|
void GenerateKey::Run() {
|
||
|
|
||
|
// Pass KeyManager::GetKey() to data output layer
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|