| 25 | |
| 26 | namespace { |
| 27 | size_t base64_length(size_t unencoded_length) { |
| 28 | return (unencoded_length + 2) / 3 * 4; |
| 29 | } |
| 30 | |
| 31 | bool check_encryption(const ConfigFile& test_file, const std::string& property_name, size_t original_value_length) { |
| 32 | utils::optional<std::string> encrypted_value = test_file.getValue(property_name); |
no outgoing calls
no test coverage detected