54 lines
1.3 KiB
C
54 lines
1.3 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <strings.h>
|
|
|
|
#include "keyfile.h"
|
|
#include "parse-keyfile.h"
|
|
#include "binkeyfile.h"
|
|
#include "util.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
#ifdef DEBUG
|
|
fprintf(stderr, "WARNING: This has been compiled in DEBUG mode and uses reduced security.\n");
|
|
#endif
|
|
|
|
if (argc != 4) {
|
|
fprintf(stderr, "%s [server|client] [Infile] [Outfile]\n", argv[0]);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
bool server = !strcasecmp(argv[1], "server");
|
|
bool client = !strcasecmp(argv[1], "client");
|
|
if (!server && !client) {
|
|
fprintf(stderr, "First parameter must be either 'client' or 'server'.\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
const char *infile = argv[2];
|
|
const char *outfile = argv[3];
|
|
|
|
struct keydb_t keydb;
|
|
if (!parse_keyfile(infile, &keydb, server)) {
|
|
fprintf(stderr, "Failed to parse key file %s. Aborting.\n", infile);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
fprintf(stderr, "Successfully read key file with %d entries.\n", keydb.entrycnt);
|
|
|
|
char *passphrase = NULL;
|
|
if (client) {
|
|
passphrase = query_passphrase("Passphrase to encrypt keyfile: ");
|
|
if (!passphrase) {
|
|
fprintf(stderr, "Failed to get passphrase.\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
if (!write_binary_keyfile(outfile, &keydb, passphrase)) {
|
|
fprintf(stderr, "Failed to write binary key file %s. Aborting.\n", outfile);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
free(passphrase);
|
|
|
|
return 0;
|
|
}
|