zmqpp
4.1.2
C++ bindings for 0mq (libzmq)
|
#include <string>
#include <vector>
#include <zmq.h>
Go to the source code of this file.
Namespaces | |
zmqpp | |
C++ wrapper around zmq. | |
zmqpp::z85 | |
Provide z85 encoding and decoding facilities. | |
Functions | |
std::string | zmqpp::z85::encode (const std::string &raw_data) |
Encode a binary string into a string using Z85 representation. More... | |
std::string | zmqpp::z85::encode (const uint8_t *data, size_t size) |
Encode a binary blob into a string using Z85 representation. More... | |
std::vector< uint8_t > | zmqpp::z85::decode (const std::string &string) |
Decode a Z85 encoded string into a binary blob represented as a vector. More... | |