• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/apps/

Lines Matching refs:bio_err

171 	if (bio_err == NULL)
172 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
173 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
175 if (!load_config(bio_err, NULL))
245 BIO_printf(bio_err,"%s [options] [numbits]\n",prog);
246 BIO_printf(bio_err,"where options are\n");
247 BIO_printf(bio_err," -inform arg input format - one of DER PEM\n");
248 BIO_printf(bio_err," -outform arg output format - one of DER PEM\n");
249 BIO_printf(bio_err," -in arg input file\n");
250 BIO_printf(bio_err," -out arg output file\n");
252 BIO_printf(bio_err," -dsaparam read or generate DSA parameters, convert to DH\n");
254 BIO_printf(bio_err," -check check the DH parameters\n");
255 BIO_printf(bio_err," -text print a text form of the DH parameters\n");
256 BIO_printf(bio_err," -C Output C code\n");
257 BIO_printf(bio_err," -2 generate parameters using 2 as the generator value\n");
258 BIO_printf(bio_err," -5 generate parameters using 5 as the generator value\n");
259 BIO_printf(bio_err," numbits number of bits in to generate (default 512)\n");
261 BIO_printf(bio_err," -engine e use engine e, possibly a hardware device.\n");
263 BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
264 BIO_printf(bio_err," - load the file (or the files in the directory) into\n");
265 BIO_printf(bio_err," the random number generator\n");
266 BIO_printf(bio_err," -noout no output\n");
273 e = setup_engine(bio_err, engine, 0);
284 BIO_printf(bio_err, "generator may not be chosen for DSA parameters\n");
299 BN_GENCB_set(&cb, dh_cb, bio_err);
300 if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL)
302 BIO_printf(bio_err,"warning, not much extra random data, consider using the -rand option\n");
305 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
313 BIO_printf(bio_err,"Generating DSA parameters, %d bit long prime\n",num);
318 ERR_print_errors(bio_err);
326 ERR_print_errors(bio_err);
334 BIO_printf(bio_err,"Generating DH parameters, %d bit long safe prime, generator %d\n",num,g);
335 BIO_printf(bio_err,"This is going to take a long time\n");
339 ERR_print_errors(bio_err);
344 app_RAND_write_file(NULL, bio_err);
350 ERR_print_errors(bio_err);
366 BIO_printf(bio_err,"bad input format specified\n");
382 BIO_printf(bio_err,"unable to load DSA parameters\n");
383 ERR_print_errors(bio_err);
391 ERR_print_errors(bio_err);
405 BIO_printf(bio_err,"unable to load DH parameters\n");
406 ERR_print_errors(bio_err);
417 ERR_print_errors(bio_err);
449 ERR_print_errors(bio_err);
521 BIO_printf(bio_err,"bad output format specified for outfile\n");
526 BIO_printf(bio_err,"unable to write DH parameters\n");
527 ERR_print_errors(bio_err);