Home | History | Annotate | Download | only in apps

Lines Matching full: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))
176 BIO_printf(bio_err,"usage: gendsa [args] dsaparam-file\n");
177 BIO_printf(bio_err," -out file - output the key to 'file'\n");
179 BIO_printf(bio_err," -des - encrypt the generated key with DES in cbc mode\n");
180 BIO_printf(bio_err," -des3 - encrypt the generated key with DES in ede cbc mode (168 bit key)\n");
183 BIO_printf(bio_err," -idea - encrypt the generated key with IDEA in cbc mode\n");
186 BIO_printf(bio_err," -seed\n");
187 BIO_printf(bio_err," encrypt PEM output with cbc seed\n");
190 BIO_printf(bio_err," -aes128, -aes192, -aes256\n");
191 BIO_printf(bio_err," encrypt PEM output with cbc aes\n");
194 BIO_printf(bio_err," -camellia128, -camellia192, -camellia256\n");
195 BIO_printf(bio_err," encrypt PEM output with cbc camellia\n");
198 BIO_printf(bio_err," -engine e - use engine e, possibly a hardware device.\n");
200 BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
201 BIO_printf(bio_err," - load the file (or the files in the directory) into\n");
202 BIO_printf(bio_err," the random number generator\n");
203 BIO_printf(bio_err," dsaparam-file\n");
204 BIO_printf(bio_err," - a DSA parameter file as generated by the dsaparam command\n");
209 e = setup_engine(bio_err, engine, 0);
212 if(!app_passwd(bio_err, NULL, passargout, NULL, &passout)) {
213 BIO_printf(bio_err, "Error getting password\n");
227 BIO_printf(bio_err,"unable to load DSA parameter file\n");
255 if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL)
257 BIO_printf(bio_err,"warning, not much extra random data, consider using the -rand option\n");
260 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
263 BIO_printf(bio_err,"Generating DSA key, %d bits\n",
267 app_RAND_write_file(NULL, bio_err);
274 ERR_print_errors(bio_err);