mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-14 00:46:44 +00:00
8455b8dd17
* Adding cpp example that integrates the `libwaku` --------- Co-authored-by: NagyZoltanPeter <113987313+NagyZoltanPeter@users.noreply.github.com>
12 lines
172 B
C++
12 lines
172 B
C++
|
|
#ifndef _BASE64_H_
|
|
#define _BASE64_H_
|
|
|
|
#include <stdlib.h>
|
|
|
|
size_t b64_encoded_size(size_t inlen);
|
|
|
|
void b64_encode(char* in, size_t len, std::vector<char>& out);
|
|
|
|
#endif
|