A C++20 implementation of Base64 encoding and decoding with a clean API and comprehensive tests.
mkdir build && cd build
cmake ..
cmake --build .#include "encoder.h"
#include "decoder.h"
std::string encoded = encode("Hello, World!");
std::string decoded = decode(encoded);./build/base64_tests