5#ifndef WPIUTIL_WPI_BASE64_H_
6#define WPIUTIL_WPI_BASE64_H_
25std::string_view
Base64Decode(std::string_view encoded,
size_t* num_read,
28size_t Base64Decode(std::string_view encoded, std::vector<uint8_t>* plain);
30std::span<uint8_t>
Base64Decode(std::string_view encoded,
size_t* num_read,
42void Base64Encode(std::span<const uint8_t> plain, std::string* encoded);
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition sha1.h:30
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:43
Foonathan namespace.
Definition ntcore_cpp.h:26
void Base64Encode(raw_ostream &os, std::string_view plain)
size_t Base64Decode(raw_ostream &os, std::string_view encoded)