roo_io
API Documentation for roo_io
Loading...
Searching...
No Matches
base64.h
Go to the documentation of this file.
1#include "roo_io/base/byte.h"
2
3#include <cstddef>
4
5namespace roo_io {
6
7// Encodes the input as Base64. The size of the output must be at least ceil(4 *
8// input_length / 3).
9void Base64Encode(const byte* input, size_t input_length, char* output);
10
11// void Base64Decode(const char* input, size_t input_length, byte* output);
12
13} // namespace roo_io
Definition byte.h:6
void Base64Encode(const byte *input, size_t input_length, char *output)
Definition base64.cpp:7
roo::basic_string_view< CharT, Traits > basic_string_view
Definition string_view.h:8