1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/lib/webfuse/impl/util/base64.h

41 lines
736 B
C
Raw Normal View History

#ifndef WF_IMPL_UTIL_BASE64_H
#define WF_IMPL_UTIL_BASE64_H
2019-12-01 16:17:21 +00:00
#ifndef __cplusplus
#include <inttypes.h>
#include <stddef.h>
#include <stdbool.h>
#else
#include <cinttypes>
#include <cstddef>
#endif
#ifdef __cplusplus
extern "C"
{
#endif
extern size_t wf_impl_base64_encoded_size(size_t length);
2019-12-01 16:17:21 +00:00
extern size_t wf_impl_base64_encode(
2019-12-01 16:17:21 +00:00
uint8_t const * data,
size_t length,
char * buffer,
size_t buffer_size);
extern size_t wf_impl_base64_decoded_size(char const * data, size_t length);
2019-12-01 16:17:21 +00:00
extern size_t wf_impl_base64_decode(
2019-12-01 16:17:21 +00:00
char const * data,
size_t length,
uint8_t * buffer,
size_t buffer_size);
extern bool wf_impl_base64_isvalid(char const * data, size_t length);
2019-12-01 16:17:21 +00:00
#ifdef __cplusplus
}
#endif
#endif