#pragma once #include #include #include namespace connector { std::vector decode_base64(const std::string& value); std::string url_decode(const std::string& value); std::string url_encode(const std::string& value); std::string html_escape(const std::string& value); std::string trim(const std::string& value); } // namespace connector