mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-01-12 02:43:13 +00:00
git-subtree-dir: third-party/nwaku git-subtree-split: d94cb7c73631ffd4b934839ba58bc622d331a135
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
|