MCPcopy Create free account
hub / github.com/apache/trafficserver / cryptoBase64DecodeSize

Function cryptoBase64DecodeSize

plugins/experimental/access_control/utils.cc:262–266  ·  view source on GitHub ↗

* @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 */

Source from the content-addressed store, hash-verified

260 * @return output buffer size
261 */
262size_t
263cryptoBase64DecodeSize(const char * /* encoded ATS_UNUSED */, size_t encodedLen)
264{
265 return ats_base64_decode_dstlen(encodedLen);
266}
267
268/**
269 * @brief Base64 encode

Callers 2

enforceAccessControlFunction · 0.85
test_utils.ccFile · 0.85

Calls 1

ats_base64_decode_dstlenFunction · 0.85

Tested by

no test coverage detected