• 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

118 	if (bio_err == NULL)
119 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
120 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
122 if (!load_config(bio_err, NULL))
187 BIO_printf(bio_err,"unknown option %s\n",*argv);
198 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
199 BIO_printf(bio_err,"where options are\n");
200 BIO_printf(bio_err," -inform arg input format - DER or PEM\n");
201 BIO_printf(bio_err," -outform arg output format - DER or PEM\n");
202 BIO_printf(bio_err," -in arg input file\n");
203 BIO_printf(bio_err," -passin arg input file pass phrase source\n");
204 BIO_printf(bio_err," -out arg output file\n");
205 BIO_printf(bio_err," -passout arg output file pass phrase source\n");
207 BIO_printf(bio_err," -engine e use engine e, possibly a hardware device.\n");
209 BIO_printf(bio_err," -des encrypt PEM output with cbc des\n");
210 BIO_printf(bio_err," -des3 encrypt PEM output with ede cbc des using 168 bit key\n");
212 BIO_printf(bio_err," -idea encrypt PEM output with cbc idea\n");
215 BIO_printf(bio_err," -aes128, -aes192, -aes256\n");
216 BIO_printf(bio_err," encrypt PEM output with cbc aes\n");
219 BIO_printf(bio_err," -camellia128, -camellia192, -camellia256\n");
220 BIO_printf(bio_err," encrypt PEM output with cbc camellia\n");
222 BIO_printf(bio_err," -text print the key in text\n");
223 BIO_printf(bio_err," -noout don't print key out\n");
224 BIO_printf(bio_err," -modulus print the DSA public value\n");
231 e = setup_engine(bio_err, engine, 0);
234 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
235 BIO_printf(bio_err, "Error getting passwords\n");
243 ERR_print_errors(bio_err);
258 BIO_printf(bio_err,"read DSA key\n");
267 BIO_printf(bio_err,"bad input format specified for key\n");
272 BIO_printf(bio_err,"unable to load Key\n");
273 ERR_print_errors(bio_err);
300 ERR_print_errors(bio_err);
312 BIO_printf(bio_err,"writing DSA key\n");
322 BIO_printf(bio_err,"bad output format specified for outfile\n");
327 BIO_printf(bio_err,"unable to write private key\n");
328 ERR_print_errors(bio_err);