| 48 | |
| 49 | boost::filesystem::path keyDir; |
| 50 | boost::filesystem::path certFile(const std::string& filename) { |
| 51 | return keyDir / filename; |
| 52 | } |
| 53 | std::string certString(const std::string& filename) { |
| 54 | std::ifstream ifs(certFile(filename).string()); |
| 55 | if(!ifs.is_open() || !ifs.good()) { |
no outgoing calls
no test coverage detected