mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-15 14:36:45 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
26 lines
423 B
C++
26 lines
423 B
C++
#ifndef XMLRPC_BASE64_HPP_INCLUDED
|
|
#define XMLRPC_BASE64_HPP_INCLUDED
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace xmlrpc_c {
|
|
|
|
|
|
enum newlineCtl {NEWLINE_NO, NEWLINE_YES};
|
|
|
|
std::string
|
|
base64FromBytes(
|
|
std::vector<unsigned char> const& bytes,
|
|
xmlrpc_c::newlineCtl const newlineCtl = xmlrpc_c::NEWLINE_YES);
|
|
|
|
|
|
|
|
std::vector<unsigned char>
|
|
bytesFromBase64(std::string const& base64);
|
|
|
|
|
|
} // namespace
|
|
|
|
#endif
|