mirror of https://github.com/waku-org/nwaku.git
12 lines
164 B
C
12 lines
164 B
C
|
|
||
|
#ifndef _BASE64_H_
|
||
|
#define _BASE64_H_
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
size_t b64_encoded_size(size_t inlen);
|
||
|
|
||
|
char *b64_encode(const unsigned char *in, size_t len);
|
||
|
|
||
|
#endif
|