mongoose/src/base64.h

6 lines
231 B
C
Raw Normal View History

2020-12-05 19:26:32 +08:00
#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);