mongoose/src/base64.h
2020-12-05 11:26:32 +00:00

6 lines
231 B
C

#pragma once
int mg_base64_update(unsigned char p, char *to, int len);
int mg_base64_final(char *to, int len);
int mg_base64_encode(const unsigned char *p, int n, char *to);
int mg_base64_decode(const char *src, int n, char *dst);