mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-10 06:46:24 +00:00
069c1ad2a5
* Refactoring to have a working waku_thread
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
|