mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-23 00:08:02 +02:00
Problem: formatting inconsistent
Solution: applied clang-format
This commit is contained in:
@@ -33,19 +33,25 @@
|
||||
|
||||
int main (void)
|
||||
{
|
||||
puts ("This tool generates a CurveZMQ keypair, as two printable strings you can");
|
||||
puts ("use in configuration files or source code. The encoding uses Z85, which");
|
||||
puts ("is a base-85 format that is described in 0MQ RFC 32, and which has an");
|
||||
puts ("implementation in the z85_codec.h source used by this tool. The keypair");
|
||||
puts ("always works with the secret key held by one party and the public key");
|
||||
puts ("This tool generates a CurveZMQ keypair, as two printable strings "
|
||||
"you can");
|
||||
puts ("use in configuration files or source code. The encoding uses Z85, "
|
||||
"which");
|
||||
puts (
|
||||
"is a base-85 format that is described in 0MQ RFC 32, and which has an");
|
||||
puts ("implementation in the z85_codec.h source used by this tool. The "
|
||||
"keypair");
|
||||
puts (
|
||||
"always works with the secret key held by one party and the public key");
|
||||
puts ("distributed (securely!) to peers wishing to connect to it.");
|
||||
|
||||
char public_key [41];
|
||||
char secret_key [41];
|
||||
char public_key[41];
|
||||
char secret_key[41];
|
||||
if (zmq_curve_keypair (public_key, secret_key)) {
|
||||
if (zmq_errno () == ENOTSUP)
|
||||
puts ("To use curve_keygen, please install libsodium and then rebuild libzmq.");
|
||||
exit (1);
|
||||
if (zmq_errno () == ENOTSUP)
|
||||
puts ("To use curve_keygen, please install libsodium and then "
|
||||
"rebuild libzmq.");
|
||||
exit (1);
|
||||
}
|
||||
|
||||
puts ("\n== CURVE PUBLIC KEY ==");
|
||||
|
Reference in New Issue
Block a user