/* $Id$ * * Utility program to generate magic words for a given ID * * Copyright (C) 1998 by the Massachusetts Institute of Technology * For copying and distribution information, please see the file * . * */ #include #include #include "reg_svr.h" #include #include RCSID("$Header$"); int main(int argc, char **argv) { char *words[6]; if (argc != 2) { fprintf(stderr, "Usage: genwords id\n"); exit(1); } if (!read_hmac_key()) { fprintf(stderr, "Couldn't read hmac key\n"); exit(1); } getwordlist(argv[1], words); printf("%s %s %s %s %s %s\n", words[0], words[1], words[2], words[3], words[4], words[5]); } /* used by words.c */ void *xmalloc(size_t size) { /* we won't run out of memory here */ return malloc(size); }