make the smtp_to_mbx flag actually work, other random changes
[ghsmtp.git] / Base64.hpp
blob7f3626395982eda4f686e089c19aafe52213c771
1 #ifndef BASE64_H
2 #define BASE64_H
4 #include <string>
5 #include <string_view>
7 namespace Base64 {
8 std::string enc(std::string_view in, std::string::size_type wrap = 0);
9 std::string dec(std::string_view in);
10 } // namespace Base64
12 #endif // BASE64_H