1ZMQ_Z85_DECODE(3) 0MQ Manual ZMQ_Z85_DECODE(3)
2
3
4
6 zmq_z85_decode - decode a binary key from Z85 printable text
7
9 uint8_t *zmq_z85_decode (uint8_t *dest, const char *string);
10
12 The zmq_z85_decode() function shall decode string into dest. The length
13 of string shall be divisible by 5. dest must be large enough for the
14 decoded value (0.8 x strlen (string)).
15
16 The encoding shall follow the ZMQ RFC 32 specification.
17
19 The zmq_z85_decode() function shall return dest if successful, else it
20 shall return NULL.
21
23 Decoding a CURVE key.
24
25 const char decoded [] = "rq:rM>}U?@Lns47E1%kR.o@n%FcmmsL/@{H8]yf7";
26 uint8_t public_key [32];
27 zmq_z85_decode (public_key, decoded);
28
29
31 zmq_z85_decode(3) zmq_curve_keypair(3) zmq_curve_public(3) zmq_curve(7)
32
34 This page was written by the 0MQ community. To make a change please
35 read the 0MQ Contribution Policy at
36 http://www.zeromq.org/docs:contributing.
37
38
39
400MQ 4.3.4 07/23/2022 ZMQ_Z85_DECODE(3)