Zephyr API Documentation
2.7.0-rc2
A Scalable Open Source RTOS
|
Go to the source code of this file.
Functions | |
int | base64_encode (uint8_t *dst, size_t dlen, size_t *olen, const uint8_t *src, size_t slen) |
Encode a buffer into base64 format. More... | |
int | base64_decode (uint8_t *dst, size_t dlen, size_t *olen, const uint8_t *src, size_t slen) |
Decode a base64-formatted buffer. More... | |
Decode a base64-formatted buffer.
dst | destination buffer (can be NULL for checking size) |
dlen | size of the destination buffer |
olen | number of bytes written |
src | source buffer |
slen | amount of data to be decoded |
Encode a buffer into base64 format.
dst | destination buffer |
dlen | size of the destination buffer |
olen | number of bytes written |
src | source buffer |
slen | amount of data to be encoded |