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

Lines Matching refs:bio_err

137         BIO_printf(bio_err, "out of memory\n");
140 if (bio_err == NULL)
141 if ((bio_err = BIO_new(BIO_s_file())) != NULL)
142 BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
144 if (!load_config(bio_err, NULL))
202 e = setup_engine(bio_err, engine, 0);
247 BIO_printf(bio_err,
253 BIO_printf(bio_err, "unknown option '%s'\n", *argv);
254 BIO_printf(bio_err, "options are\n");
255 BIO_printf(bio_err,
257 BIO_printf(bio_err,
259 BIO_printf(bio_err, "-d to output debug info\n");
260 BIO_printf(bio_err, "-hex output as hex dump\n");
261 BIO_printf(bio_err, "-binary output in binary form\n");
262 BIO_printf(bio_err, "-hmac arg set the HMAC key to arg\n");
263 BIO_printf(bio_err, "-non-fips-allow allow use of non FIPS digest\n");
264 BIO_printf(bio_err,
266 BIO_printf(bio_err,
268 BIO_printf(bio_err,
270 BIO_printf(bio_err,
272 BIO_printf(bio_err,
274 BIO_printf(bio_err, "-signature file signature to verify\n");
275 BIO_printf(bio_err, "-sigopt nm:v signature parameter\n");
276 BIO_printf(bio_err, "-hmac key create hashed MAC with key\n");
277 BIO_printf(bio_err,
279 BIO_printf(bio_err,
282 BIO_printf(bio_err,
286 EVP_MD_do_all_sorted(list_md_fn, bio_err);
297 ERR_print_errors(bio_err);
304 BIO_set_callback_arg(in, (char *)bio_err);
307 if (!app_passwd(bio_err, passargin, NULL, &passin, NULL)) {
308 BIO_printf(bio_err, "Error getting password\n");
320 app_RAND_load_file(randfile, bio_err, 0);
338 BIO_printf(bio_err, "Error opening output file %s\n",
340 ERR_print_errors(bio_err);
344 BIO_printf(bio_err, "MAC and Signing key cannot both be specified\n");
350 sigkey = load_pubkey(bio_err, keyfile, keyform, 0, NULL,
353 sigkey = load_key(bio_err, keyfile, keyform, 0, passin,
366 if (!init_gen_str(bio_err, &mac_ctx, mac_name, impl, 0))
373 BIO_printf(bio_err,
375 ERR_print_errors(bio_err);
381 BIO_puts(bio_err, "Error generating key\n");
382 ERR_print_errors(bio_err);
411 BIO_printf(bio_err, "Error getting context\n");
412 ERR_print_errors(bio_err);
420 BIO_printf(bio_err, "Error setting context\n");
421 ERR_print_errors(bio_err);
429 BIO_printf(bio_err, "parameter error \"%s\"\n", sigopt);
430 ERR_print_errors(bio_err);
440 BIO_printf(bio_err, "Error getting context\n");
441 ERR_print_errors(bio_err);
447 BIO_printf(bio_err, "Error setting digest %s\n", pname);
448 ERR_print_errors(bio_err);
459 BIO_printf(bio_err, "Error opening signature file %s\n", sigfile);
460 ERR_print_errors(bio_err);
464 BIO_printf(bio_err, "Out of memory\n");
465 ERR_print_errors(bio_err);
471 BIO_printf(bio_err, "Error reading signature file %s\n", sigfile);
472 ERR_print_errors(bio_err);
550 BIO_printf(bio_err, "Read Error in %s\n", file);
551 ERR_print_errors(bio_err);
567 BIO_printf(bio_err, "Error Verifying Data\n");
568 ERR_print_errors(bio_err);
578 BIO_printf(bio_err, "Error Signing Data\n");
579 ERR_print_errors(bio_err);
585 ERR_print_errors(bio_err);