#ifndef BASE64_H #define BASE64_H #include #include int base64_encode(const uint8_t *in, size_t in_len, char *out, size_t out_size); #endif