• 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

114 		BIO_printf(bio_err,"out of memory\n");
117 if (bio_err == NULL)
118 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
119 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
121 if (!load_config(bio_err, NULL))
211 BIO_printf(bio_err, "No signature to verify: use the -signature option\n");
218 BIO_printf(bio_err,"unknown option '%s'\n",*argv);
219 BIO_printf(bio_err,"options are\n");
220 BIO_printf(bio_err,"-c to output the digest with separating colons\n");
221 BIO_printf(bio_err,"-d to output debug info\n");
222 BIO_printf(bio_err,"-hex output as hex dump\n");
223 BIO_printf(bio_err,"-binary output in binary form\n");
224 BIO_printf(bio_err,"-sign file sign digest using private key in file\n");
225 BIO_printf(bio_err,"-verify file verify a signature using public key in file\n");
226 BIO_printf(bio_err,"-prverify file verify a signature using private key in file\n");
227 BIO_printf(bio_err,"-keyform arg key file format (PEM or ENGINE)\n");
228 BIO_printf(bio_err,"-signature file signature to verify\n");
229 BIO_printf(bio_err,"-binary output in binary form\n");
231 BIO_printf(bio_err,"-engine e use engine e, possibly a hardware device.\n");
234 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm (default)\n",
236 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
238 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
241 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
243 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
246 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
250 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
254 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
256 BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
263 e = setup_engine(bio_err, engine, 0);
272 BIO_set_callback_arg(in,(char *)bio_err);
275 if(!app_passwd(bio_err, passargin, NULL, &passin, NULL))
277 BIO_printf(bio_err, "Error getting password\n");
283 ERR_print_errors(bio_err);
293 app_RAND_load_file(randfile, bio_err, 0);
310 BIO_printf(bio_err, "Error opening output file %s\n",
312 ERR_print_errors(bio_err);
319 sigkey = load_pubkey(bio_err, keyfile, keyform, 0, NULL,
322 sigkey = load_key(bio_err, keyfile, keyform, 0, passin,
338 BIO_printf(bio_err, "Error opening signature file %s\n",
340 ERR_print_errors(bio_err);
346 BIO_printf(bio_err, "Error reading signature file %s\n",
348 ERR_print_errors(bio_err);
358 BIO_printf(bio_err, "Error setting digest %s\n", pname);
359 ERR_print_errors(bio_err);
444 BIO_printf(bio_err, "Read Error in %s\n",file);
445 ERR_print_errors(bio_err);
464 BIO_printf(bio_err, "Error Verifying Data\n");
465 ERR_print_errors(bio_err);
476 BIO_printf(bio_err, "Error Signing Data\n");
477 ERR_print_errors(bio_err);