* @brief Calculates the size of the output buffer needed to base64 decode a message * * @param messageSize the size of the message to decode. * @return output buffer size */
| 260 | * @return output buffer size |
| 261 | */ |
| 262 | size_t |
| 263 | cryptoBase64DecodeSize(const char * /* encoded ATS_UNUSED */, size_t encodedLen) |
| 264 | { |
| 265 | return ats_base64_decode_dstlen(encodedLen); |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * @brief Base64 encode |
no test coverage detected