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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/*
hmackeys.c: convenience utility for generating good
HMAC keys.
*/
/* */
/* Copyright (c) 2009, California Institute of Technology. */
/* All rights reserved. */
/* Author: Scott Burleigh, Jet Propulsion Laboratory */
/* */
#include "platform.h"
static int processLine(char *line, int lineLength)
{
char fileName[256];
int fd;
int i;
int val;
unsigned char key[20];
int result = 0;
if (*line == '#') /* Comment. */
{
return 0;
}
if (strcmp(line, "q") == 0)
{
return 1;
}
isprintf(fileName, sizeof fileName, "./%.80s.hmk", line);
fd = iopen(fileName, O_RDWR | O_CREAT, 0777);
if (fd < 0)
{
printf("Can't create file '%s': %s\n", fileName,
system_error_msg());
return -1;
}
for (i = 0; i < 20; i++)
{
val = rand();
key[i] = val & 0xff;
}
if (write(fd, key, 20) < 20)
{
printf("Can't write key to %s: %s\n", fileName,
system_error_msg());
result = -1;
}
close(fd);
return result;
}
int main(int argc, char **argv)
{
char *cmdFileName = (argc > 1 ? argv[1] : NULL);
int cmdFile;
char line[80];
int len;
srand(time(NULL));
if (cmdFileName == NULL) /* Interactive. */
{
cmdFile = fileno(stdin);
while (1)
{
printf(": ");
fflush(stdout);
if (igets(cmdFile, line, sizeof line, &len) == NULL)
{
if (len == 0)
{
break;
}
putErrmsg("igets failed.", NULL);
break; /* Out of loop. */
}
if (len == 0)
{
continue;
}
if (processLine(line, len))
{
break; /* Out of loop. */
}
}
}
else /* Scripted. */
{
cmdFile = iopen(cmdFileName, O_RDONLY, 0777);
if (cmdFile < 0)
{
PERROR("Can't open keynames file");
}
else
{
while (1)
{
if (igets(cmdFile, line, sizeof line, &len)
== NULL)
{
if (len == 0)
{
break; /* Loop. */
}
putErrmsg("igets failed.", NULL);
break; /* Loop. */
}
if (len == 0
|| line [0] == '#') /* Comment.*/
{
continue;
}
if (processLine(line, len))
{
break; /* Out of loop. */
}
}
close(cmdFile);
}
}
PUTS("Stopping hmackeys.");
return 0;
}
|