dropshell/src/utils/b64ed.hpp
Your Name 8fc3384c03
Some checks failed
Dropshell Test / Build_and_Test (push) Failing after 18s
Tidy
2025-05-12 20:11:08 +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