bb64/b64ed.hpp
Your Name bb355cf4ac Tidy
2025-05-12 19:48:56 +12:00

10 lines
167 B
C++

#ifndef B64ED_HPP
#define B64ED_HPP
#include <string>
std::string base64_decode(const std::string &in);
std::string base64_encode(const std::string &in);
#endif