Searched defs:randomfile (Results 1 - 7 of 7) sorted by relevance
/bind-9.11.3/bin/confgen/ |
H A D | keygen.c | 114 * Generate a key of size 'keysize' using entropy source 'randomfile', 118 generate_key(isc_mem_t *mctx, const char *randomfile, dns_secalg_t alg, argument 154 if (randomfile != NULL && strcmp(randomfile, "keyboard") == 0) { 155 randomfile = NULL; 160 randomfile,
|
H A D | ddns-confgen.c | 67 %s [-a alg] [-k keyname] [-r randomfile] [-q] [-s name | -z zone]\n\ 70 -r randomfile: source of random data (use \"keyboard\" for key timing)\n\ 78 %s [-a alg] [-r randomfile] [keyname]\n\ 80 -r randomfile: source of random data (use \"keyboard\" for key timing)\n", 95 const char *randomfile = NULL; local 168 randomfile = isc_commandline_argument; 235 generate_key(mctx, randomfile, alg, keysize, &key_txtbuffer);
|
H A D | rndc-confgen.c | 73 %s [-a] [-b bits] [-c keyfile] [-k keyname] [-p port] [-r randomfile] \ 81 -r randomfile: source of random data (use \"keyboard\" for key timing)\n\ 89 %s [-a] [-b bits] [-c keyfile] [-k keyname] [-p port] [-r randomfile] \ 97 -r randomfile: source of random data (use \"keyboard\" for key timing)\n\ 115 const char *randomfile = NULL; local 189 randomfile = isc_commandline_argument; 235 generate_key(mctx, randomfile, alg, keysize, &key_txtbuffer);
|
/bind-9.11.3/lib/isc/ |
H A D | entropy.c | 1231 const char *randomfile, int use_keyboard) 1244 if (randomfile != NULL) 1245 pk11_rand_seed_fromfile(randomfile); 1249 if (randomfile == NULL) { 1250 randomfile = PATH_RANDOMDEV; 1255 if (randomfile != NULL && use_keyboard != ISC_ENTROPY_KEYBOARDYES) { 1256 result = isc_entropy_createfilesource(ectx, randomfile); 1230 isc_entropy_usebestsource(isc_entropy_t *ectx, isc_entropysource_t **source, const char *randomfile, int use_keyboard) argument
|
H A D | pk11.c | 306 pk11_rand_seed_fromfile(const char *randomfile) { argument 319 ret = isc_stdio_open(randomfile, "r", &stream);
|
/bind-9.11.3/bin/dnssec/ |
H A D | dnssectool.c | 220 setup_entropy(isc_mem_t *mctx, const char *randomfile, isc_entropy_t **ectx) { argument 235 if (randomfile != NULL && strcmp(randomfile, "keyboard") == 0) { 237 randomfile = NULL; 240 result = isc_entropy_usebestsource(*ectx, &source, randomfile,
|
/bind-9.11.3/bin/nsupdate/ |
H A D | nsupdate.c | 257 setup_entropy(isc_mem_t *mctx, const char *randomfile, isc_entropy_t **ectx) { argument 272 if (randomfile != NULL && strcmp(randomfile, "keyboard") == 0) { 274 randomfile = NULL; 277 result = isc_entropy_usebestsource(*ectx, &source, randomfile,
|
Completed in 25 milliseconds