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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/*
20121022
20241212 - reformated using clang-format
Jan Mojzis
Public domain.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "savesync.h"
#include "log.h"
#include "sshcrypto.h"
#include "global.h"
#include "die.h"
#include "main.h"
#define sk global_bspace1 /* reusing global buffer */
#define pk global_bspace2 /* reusing global buffer */
#define USAGE "usage: tinysshd-makekey keydir"
static void create(const char *d, const char *fn, const unsigned char *x,
long long xlen) {
if (savesync(fn, x, xlen) == -1) die_fatal("unable to create", d, fn);
}
static int flagverbose = 1;
int main_tinysshd_makekey(int argc, char **argv) {
char *x;
long long i;
log_init(flagverbose, "tinysshd-makekey", 0, 0);
if (argc < 2) die_usage(USAGE);
if (!argv[0]) die_usage(USAGE);
for (;;) {
if (!argv[1]) break;
if (argv[1][0] != '-') break;
x = *++argv;
if (x[0] == '-' && x[1] == 0) break;
if (x[0] == '-' && x[1] == '-' && x[2] == 0) break;
while (*++x) {
if (*x == 'q') {
flagverbose = 0;
continue;
}
if (*x == 'Q') {
flagverbose = 1;
continue;
}
die_usage(USAGE);
}
}
x = *++argv;
if (!x) die_usage(USAGE);
log_init(flagverbose, "tinysshd-makekey", 0, 0);
umask(022);
if (mkdir(x, 0755) == -1) die_fatal("unable to create directory", x, 0);
if (chdir(x) == -1) die_fatal("unable to chdir to directory", x, 0);
for (i = 0; sshcrypto_keys[i].name; ++i) {
if (sshcrypto_keys[i].sign_keypair(pk, sk) != 0)
die_fatal("unable to generate key pair", x, 0);
umask(022);
create(x, sshcrypto_keys[i].sign_publickeyfilename, pk,
sshcrypto_keys[i].sign_publickeybytes);
umask(077);
create(x, sshcrypto_keys[i].sign_secretkeyfilename, sk,
sshcrypto_keys[i].sign_secretkeybytes);
}
global_die(0);
return 111;
}
|