#pragma once #include int httpd_base64_decode(size_t in_len, const char *in, size_t out_len, unsigned char *out); int httpd_base64_encode(size_t in_len, const unsigned char *in, size_t out_len, char *out); // The implementations in the c file are WEAK to allow overriding in case the same function already exists elsewhere in the system.