Files

11 lines
240 B
C
Raw Permalink Normal View History

2024-05-07 18:09:20 +08:00
#ifndef __DD_BASE64_H__
#define __DD_BASE64_H__
#include <string>
std::string base64_encode(unsigned char const* , unsigned int len);
std::string base64_decode(std::string const& s);
std::string UrlEncode(const std::string& str);
#endif