summaryrefslogtreecommitdiff
path: root/ecp/util/mknode.c
blob: 885a4c04553f0d6afa4de8b5997b2b4446baee17 (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>

#include "core.h"
#include "util.h"

#define FN_LEN  256

static char fn_key[FN_LEN];
static char fn_node[FN_LEN];

static void usage(char *arg) {
    fprintf(stderr, "Usage: %s <name> [address]\n", arg);
    exit(1);
}

int main(int argc, char *argv[]) {
    ECPDHKey key;
    ECPNode node;
    int rv;

    if ((argc < 2) || (argc > 3)) usage(argv[0]);

    if (strlen(argv[1]) > FN_LEN - 6) usage(argv[0]);
    strcpy(fn_node, argv[1]);
    strcpy(fn_key, argv[1]);
    strcat(fn_key, ".priv");
    strcat(fn_node, ".pub");

    rv = ecp_dhkey_gen(&key);
    if (rv) goto err;

    rv = ecp_node_init(&node, &key.public, (argc == 3) ? argv[2] : NULL);
    if (rv) goto err;

    rv = ecp_util_key_save(&key, fn_key);
    if (rv) goto err;

    rv = ecp_util_node_save(&node, fn_node);
    if (rv) goto err;

    return 0;

err:
    printf("ERR:%d\n", rv);
    return 1;
}