zmqpp 4.1.2
C++ bindings for 0mq (libzmq)
Loading...
Searching...
No Matches
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

namespace  zmqpp
 C++ wrapper around zmq.
 
namespace  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.
 
std::string zmqpp::z85::encode (const uint8_t *data, size_t size)
 Encode a binary blob into a string using Z85 representation.
 
std::vector< uint8_t > zmqpp::z85::decode (const std::string &string)
 Decode a Z85 encoded string into a binary blob represented as a vector.