blob: c32264009037fe6d6258706e555b4a57fd2c8740 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#ifndef AXOLOLT_BASE64_HH_
#define AXOLOLT_BASE64_HH_
#include <cstddef>
#include <cstdint>
namespace axolotl {
std::size_t encode_base64_length(
std::size_t input_length
);
void encode_base64(
std::uint8_t const * input, std::size_t input_length,
std::uint8_t * output
);
std::size_t decode_base64_length(
std::size_t input_length
);
void decode_base64(
std::uint8_t const * input, std::size_t input_length,
std::uint8_t * output
);
} // namespace axolotl
#endif /* AXOLOLT_BASE64_HH_ */
|