| 258 | } |
| 259 | |
| 260 | void ConfigProcessor::decryptEncryptedElements(LoadedConfig & loaded_config) |
| 261 | { |
| 262 | Node * config_root = getRootNode(loaded_config.preprocessed_xml.get()); |
| 263 | decryptRecursive(config_root); |
| 264 | loaded_config.configuration = new Poco::Util::XMLConfiguration(loaded_config.preprocessed_xml); |
| 265 | } |
| 266 | |
| 267 | bool ConfigProcessor::hasNodeWithAttribute(Poco::XML::Node * config_root, const std::string & attribute_name) |
| 268 | { |
nothing calls this directly
no test coverage detected