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

Lines Matching refs:bio_err

133     if (bio_err == NULL)
134 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
135 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
137 if (!load_config(bio_err, NULL))
199 BIO_printf(bio_err, "unknown option %s\n", *argv);
209 BIO_printf(bio_err, "%s [options] [bits] <infile >outfile\n", prog);
210 BIO_printf(bio_err, "where options are\n");
211 BIO_printf(bio_err, " -inform arg input format - DER or PEM\n");
212 BIO_printf(bio_err, " -outform arg output format - DER or PEM\n");
213 BIO_printf(bio_err, " -in arg input file\n");
214 BIO_printf(bio_err, " -out arg output file\n");
215 BIO_printf(bio_err, " -text print as text\n");
216 BIO_printf(bio_err, " -C Output C code\n");
217 BIO_printf(bio_err, " -noout no output\n");
218 BIO_printf(bio_err, " -genkey generate a DSA key\n");
219 BIO_printf(bio_err,
222 BIO_printf(bio_err,
226 BIO_printf(bio_err,
229 BIO_printf(bio_err,
239 ERR_print_errors(bio_err);
267 setup_engine(bio_err, engine, 0);
271 app_RAND_load_file(NULL, bio_err, (inrand != NULL));
273 BIO_printf(bio_err, "%ld semi-random bytes loaded\n",
279 BN_GENCB_set(&cb, dsa_cb, bio_err);
283 BIO_printf(bio_err, "Error allocating DSA object\n");
286 BIO_printf(bio_err, "Generating DSA parameters, %d bit long prime\n",
288 BIO_printf(bio_err, "This could take some time\n");
294 BIO_printf(bio_err,
298 BIO_printf(bio_err, "Error, couldn't set SIGALRM handler\n");
307 BIO_printf(bio_err, "DSA key generation time-stopped\n");
313 ERR_print_errors(bio_err);
314 BIO_printf(bio_err, "Error, DSA key generation failed\n");
322 BIO_printf(bio_err, "bad input format specified\n");
326 BIO_printf(bio_err, "unable to load DSA parameters\n");
327 ERR_print_errors(bio_err);
394 BIO_printf(bio_err, "bad output format specified for outfile\n");
398 BIO_printf(bio_err, "unable to write DSA parameters\n");
399 ERR_print_errors(bio_err);
410 ERR_print_errors(bio_err);
420 BIO_printf(bio_err, "bad output format specified for outfile\n");
427 app_RAND_write_file(NULL, bio_err);