Problem: formatting inconsistent

Solution: applied clang-format
This commit is contained in:
sigiesec
2018-02-01 11:46:09 +01:00
parent 6d8baea714
commit 41f459e1dc
331 changed files with 13208 additions and 13691 deletions

View File

@@ -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 ==");