File: curve_keygen.cpp

package info (click to toggle)
zeromq3 4.3.5-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,548 kB
  • sloc: cpp: 56,475; ansic: 4,968; makefile: 1,607; sh: 1,400; xml: 196; python: 40
file content (37 lines) | stat: -rw-r--r-- 1,092 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* SPDX-License-Identifier: MPL-2.0 */

#include <stdlib.h>
#include <assert.h>
#include <zmq.h>

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 ("distributed (securely!) to peers wishing to connect to it.");

    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);
    }

    puts ("\n== CURVE PUBLIC KEY ==");
    puts (public_key);

    puts ("\n== CURVE SECRET KEY ==");
    puts (secret_key);

    exit (0);
}