Core/Data/WebHelpers/base64.h
Go to the documentation of this file.
int base64_encode(size_t in_len, const unsigned char *in, size_t out_len, char *out)
encode binary data into base64 digits with MIME style === pads
size_t base64_min_decode_len(size_t in_len)
Get minimum output buffer size required to decode message of given length.
size_t base64_min_encode_len(size_t in_len)
Get minimum output buffer size required to encode message of given length.
int base64_decode(size_t in_len, const char *in, size_t out_len, unsigned char *out)
decode base64 digits with MIME style === pads into binary data
const char * c_str() const
Get a constant (un-modifiable) pointer to String content.
Definition: WString.h:616
size_t length(void) const
Obtain the String length in characters, excluding NUL terminator.
Definition: WString.h:243