logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

zmq_z85_decode - decode a binary key from Z85 printable text

Authors

       This page was written by the 0MQ community. To make a change please read the 0MQ Contribution Policy at
       http://www.zeromq.org/docs:contributing.

0MQ 4.3.5                                          03/31/2024                                  ZMQ_Z85_DECODE(3)

Description

       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.

Example

DecodingaCURVEkey.

           const char decoded [] = "rq:rM>}U?@Lns47E1%kR.o@n%FcmmsL/@{H8]yf7";
           uint8_t public_key [32];
           zmq_z85_decode (public_key, decoded);

Name

       zmq_z85_decode - decode a binary key from Z85 printable text

Return Value

       The zmq_z85_decode() function shall return dest if successful, else it shall return NULL.

See Also

zmq_z85_decode(3) zmq_curve_keypair(3) zmq_curve_public(3) zmq_curve(7)

Synopsis

uint8_t*zmq_z85_decode(uint8_t*dest,constchar*string);

See Also