35 static std::string
encode(
const void * data,
const size_t dataSize);
43 static std::string
encodeUrl(
const void * data,
const size_t dataSize);
#define ONIXS_FIXENGINE_API
The BASE64 encoding service.
static void decodeUrl(ByteArray &decoded, const std::string &encoded)
Reconstructs the binary data from the BASE64URL-encoded text.
static std::string encode(const void *data, const size_t dataSize)
Returns the BASE64 presentation of the binary data.
static void decode(ByteArray &decoded, const std::string &encoded)
Reconstructs the binary data from the BASE64-encoded text.
static std::string encodeUrl(const void *data, const size_t dataSize)
Returns the BASE64URL presentation of the binary data.
std::vector< unsigned char > ByteArray
The simple presentation of the byte sequence.