GCrypt/GCryptCLI/src/main.cpp

19 lines
306 B
C++
Raw Normal View History

#include "CommandlineInterface.h"
#include "Configuration.h"
2022-05-27 16:44:42 +02:00
#include "KeyManager.h"
int main(int argc, char* const* argv) {
// Init cli args
CommandlineInterface::Init(argc, argv);
// Parse configuration
Configuration::Parse();
2022-05-26 21:56:15 +02:00
// Prepare the key
2022-05-27 16:44:42 +02:00
KeyManager::PrepareKey();
2022-05-26 21:56:15 +02:00
return 0;
}