| 133 | } |
| 134 | |
| 135 | static String base64Decode(const String & encoded) |
| 136 | { |
| 137 | String decoded; |
| 138 | Poco::MemoryInputStream istr(encoded.data(), encoded.size()); |
| 139 | Poco::Base64Decoder decoder(istr); |
| 140 | Poco::StreamCopier::copyToString(decoder, decoded); |
| 141 | return decoded; |
| 142 | } |
| 143 | |
| 144 | static String base64Encode(const String & decoded) |
| 145 | { |
no test coverage detected