From d26f046fc9149693a6ebc28301ccc3581c0f144e Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Mon, 9 Jan 2023 01:22:54 +0100 Subject: Initial commit --- base64.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 base64.h (limited to 'base64.h') diff --git a/base64.h b/base64.h new file mode 100644 index 0000000..6ca0f18 --- /dev/null +++ b/base64.h @@ -0,0 +1,9 @@ +#ifndef BASE64_H +#define BASE64_H + +#include + +char *base64_encode(const void *buf, size_t n); +void *base64_decode(const char *b64, size_t *n); + +#endif /* BASE64_H */ -- cgit v1.2.3