1. 程式人生 > >ZeroMQ介面函式之 :zmq_z85_decode – 從一個用Z85演算法生成的文字中解析出二進位制密碼

ZeroMQ介面函式之 :zmq_z85_decode – 從一個用Z85演算法生成的文字中解析出二進位制密碼

zmq_z85_decode(3)         ØMQ Manual - ØMQ/4.1.0

Name

zmq_z85_decode – 從一個用Z85演算法生成的文字中解析出二進位制密碼

Synopsis

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

Description

zmq_z85_decode()函式將解密string引數指定的加密文字到dest指定的儲存空間。string的長度必須是能被5整除的數。dest引數指定的儲存空間必須足夠大以滿足(strlen(string) * 0.8)。

解密方式遵循ZMQ RFC 32文件的規則。

Return value

如果zmq_z85_decode()函式執行成功則會返回dest的地址,否則返回NULL。

Example

  解密一個curve密碼

1 char decoded [] = "rq:rM>}[email protected]%[email protected]%FcmmsL/@{H8]yf7";
2 uint8_t public_key [32]; zmq_z85_decode (public_key, decoded);

See also

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

Authors

This page was written by the ØMQ community. To make a change please read the ØMQ Contribution

Policy at http://www.zeromq.org/docs:contributing.

Web site design and content is copyright (c) 2007-2012 iMatix Corporation. Contact us for professional support. Site content licensed under the Creative Commons Attribution-Share Alike 3.0 License. ØMQ is copyright (c) Copyright (c) 2007-2012 iMatix Corporation and Contributors. ØMQ is free software licensed under the LGPL. ØMQ, ZeroMQ, and 0MQ are trademarks of iMatix Corporation. Terms of Use — Privacy

Policy

翻譯:風波

mail : [email protected]