mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-01-13 03:13:09 +00:00
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
|