#include <base64.h>
Static Public Member Functions | |
static const std::string | encode64 (const std::string &input) |
static const std::string | decode64 (const std::string &input) |
Definition at line 30 of file base64.h.
const std::string encode64 | ( | const std::string & | input | ) | [static] |
Base64-encodes the input according to RFC 3548.
input | The data to encode. |
Definition at line 40 of file base64.cpp.
Referenced by ClientBase::processSASLChallenge(), InBandBytestream::sendBlock(), VCard::setLogo(), VCard::setPhoto(), and ClientBase::startSASL().
const std::string decode64 | ( | const std::string & | input | ) | [static] |
Base64-decodes the input according to RFC 3548.
input | The encoded data. |
Definition at line 85 of file base64.cpp.
Referenced by InBandBytestream::filter(), ClientBase::processSASLChallenge(), and VCard::VCard().