From bedd6906eabdd513042d6a178d4dc56a3a41d1d3 Mon Sep 17 00:00:00 2001 From: Fox Caminiti Date: Fri, 16 Dec 2022 20:16:43 -0500 Subject: v3, file/build organization --- dependencies/include/base64.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 dependencies/include/base64.h (limited to 'dependencies/include/base64.h') diff --git a/dependencies/include/base64.h b/dependencies/include/base64.h new file mode 100644 index 0000000..aa21fd0 --- /dev/null +++ b/dependencies/include/base64.h @@ -0,0 +1,17 @@ +/* + * Base64 encoding/decoding (RFC1341) + * Copyright (c) 2005, Jouni Malinen + * + * This software may be distributed under the terms of the BSD license. + * See README for more details. + */ + +#ifndef BASE64_H +#define BASE64_H + +unsigned char * base64_encode(const unsigned char *src, size_t len, + size_t *out_len); +unsigned char * base64_decode(const unsigned char *src, size_t len, + size_t *out_len); + +#endif /* BASE64_H */ -- cgit v1.2.3