|
|
|
@ -356,6 +356,9 @@ bool HostFNE::readParams()
|
|
|
|
|
|
|
|
|
|
|
|
yaml::Node cryptoContainer = masterConf["crypto_container"];
|
|
|
|
yaml::Node cryptoContainer = masterConf["crypto_container"];
|
|
|
|
bool cryptoContainerEnabled = cryptoContainer["enabled"].as<bool>(false);
|
|
|
|
bool cryptoContainerEnabled = cryptoContainer["enabled"].as<bool>(false);
|
|
|
|
|
|
|
|
#if !defined(ENABLE_TCP_SSL)
|
|
|
|
|
|
|
|
cryptoContainerEnabled = false;
|
|
|
|
|
|
|
|
#endif // ENABLE_TCP_SSL
|
|
|
|
std::string cryptoContainerEKC = cryptoContainer["file"].as<std::string>();
|
|
|
|
std::string cryptoContainerEKC = cryptoContainer["file"].as<std::string>();
|
|
|
|
std::string cryptoContainerPassword = cryptoContainer["password"].as<std::string>();
|
|
|
|
std::string cryptoContainerPassword = cryptoContainer["password"].as<std::string>();
|
|
|
|
uint32_t cryptoContainerReload = cryptoContainer["time"].as<uint32_t>(30U);
|
|
|
|
uint32_t cryptoContainerReload = cryptoContainer["time"].as<uint32_t>(30U);
|
|
|
|
|