|
roo_io
API Documentation for roo_io
|
Convert between binary and base64 encoded string. More...
Functions | |
| void | encode (const uint8_t *input, size_t inputLength, char *output) |
| size_t | encodeLength (size_t inputLength) |
| void | decode (const char *input, size_t inputLength, uint8_t *output) |
| size_t | decodeLength (const char *input) |
Convert between binary and base64 encoded string.
| void base64::decode | ( | const char * | input, |
| size_t | inputLength, | ||
| uint8_t * | output | ||
| ) |
Definition at line 72 of file base64.cpp.
| size_t base64::decodeLength | ( | const char * | input | ) |
Definition at line 108 of file base64.cpp.
| void base64::encode | ( | const uint8_t * | input, |
| size_t | inputLength, | ||
| char * | output | ||
| ) |
Definition at line 30 of file base64.cpp.
Referenced by roo_io::Base64Encode().
| size_t base64::encodeLength | ( | size_t | inputLength | ) |
Definition at line 68 of file base64.cpp.