zmqpp  4.1.2
C++ bindings for 0mq (libzmq)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Namespaces | Functions
z85.hpp File Reference
#include <string>
#include <vector>
#include <zmq.h>
Include dependency graph for z85.hpp:
This graph shows which files directly or indirectly include this file:

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...