Decode a binary key from z85 printable text
uint8_t *zmq_z85_decode (uint8_t *dest, char *string);
The zmq_z85_decode() function shall decode string into dest. The length of string shall be divisible by 5. dest must be large enough for the decoded value (0.8 x strlen (string)).
The encoding shall follow the ZMQ RFC 32 specification.
The zmq_z85_decode() function shall return dest if successful, else it shall return NULL.
Decoding a CURVE key.
char decoded [] = "rq:rM>}U?@Lns47E1%kR.o@n%FcmmsL/@{H8]yf7"; uint8_t public_key [32]; zmq_z85_decode (public_key, decoded);
This page was written by the 0MQ community. To make a change please read the 0MQ Contribution Policy at \m[blue]http://www.zeromq.org/docs:contributing\m[].