• 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

97 	if (bio_err == NULL)
98 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
99 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
101 if (!load_config(bio_err, NULL))
172 BIO_printf(bio_err,"usage: gendsa [args] dsaparam-file\n");
173 BIO_printf(bio_err," -out file - output the key to 'file'\n");
175 BIO_printf(bio_err," -des - encrypt the generated key with DES in cbc mode\n");
176 BIO_printf(bio_err," -des3 - encrypt the generated key with DES in ede cbc mode (168 bit key)\n");
179 BIO_printf(bio_err," -idea - encrypt the generated key with IDEA in cbc mode\n");
182 BIO_printf(bio_err," -aes128, -aes192, -aes256\n");
183 BIO_printf(bio_err," encrypt PEM output with cbc aes\n");
186 BIO_printf(bio_err," -camellia128, -camellia192, -camellia256\n");
187 BIO_printf(bio_err," encrypt PEM output with cbc camellia\n");
190 BIO_printf(bio_err," -engine e - use engine e, possibly a hardware device.\n");
192 BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
193 BIO_printf(bio_err," - load the file (or the files in the directory) into\n");
194 BIO_printf(bio_err," the random number generator\n");
195 BIO_printf(bio_err," dsaparam-file\n");
196 BIO_printf(bio_err," - a DSA parameter file as generated by the dsaparam command\n");
201 e = setup_engine(bio_err, engine, 0);
204 if(!app_passwd(bio_err, NULL, passargout, NULL, &passout)) {
205 BIO_printf(bio_err, "Error getting password\n");
219 BIO_printf(bio_err,"unable to load DSA parameter file\n");
247 if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL)
249 BIO_printf(bio_err,"warning, not much extra random data, consider using the -rand option\n");
252 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
255 BIO_printf(bio_err,"Generating DSA key, %d bits\n",
259 app_RAND_write_file(NULL, bio_err);
266 ERR_print_errors(bio_err);