Lines Matching defs:seed
14 * Takes the iteration count and seed as command line args, prompts
45 char buf[33], *seed, *slash, *t;
77 /* could be in the form <number>/<seed> */
86 seed = slash;
104 seed = argv[++optind];
107 for(t = seed; *t; t++) {
109 errx(1, "seed must be alphanumeric");
112 if(!*seed || strlen(seed) > SKEY_MAX_SEED_LEN)
113 errx(1, "seed must be between 1 and %d long", SKEY_MAX_SEED_LEN);
130 /* Crunch seed and password into starting key */
131 if (keycrunch(key, seed, passwd) != 0)