esp_crypto_base64_encode() function
Do Base64 encode of the src data
Syntax
int esp_crypto_base64_encode(unsigned char *dst,
size_t dlen,
size_t *olen,
const unsigned char *src,
size_t slen);
Arguments
dlen
length of destination buffer
olen
number of bytes written
src
src buffer to be encoded
Return value
mbedtls stack:- - MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL if buffer is of insufficient size. - 0 if successful. wolfssl stack:- - <0 on failure. - 0 if succcessful.