mongoose/src/base64.h

7 lines
301 B
C
Raw Normal View History

2020-12-05 11:26:32 +00:00
#pragma once
2023-08-22 11:50:19 +01:00
#include "arch.h"
size_t mg_base64_update(unsigned char input_byte, char *buf, size_t len);
size_t mg_base64_final(char *buf, size_t len);
size_t mg_base64_encode(const unsigned char *p, size_t n, char *buf, size_t);
size_t mg_base64_decode(const char *src, size_t n, char *dst, size_t);