Home | History | Annotate | Download | only in apps

Lines Matching refs:bio_err

94 	if (bio_err == NULL)
95 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
96 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
98 if (!load_config(bio_err, NULL))
173 BIO_printf(bio_err,"usage: gendsa [args] dsaparam-file\n");
174 BIO_printf(bio_err," -out file - output the key to 'file'\n");
176 BIO_printf(bio_err," -des - encrypt the generated key with DES in cbc mode\n");
177 BIO_printf(bio_err," -des3 - encrypt the generated key with DES in ede cbc mode (168 bit key)\n");
180 BIO_printf(bio_err," -idea - encrypt the generated key with IDEA in cbc mode\n");
183 BIO_printf(bio_err," -seed\n");
184 BIO_printf(bio_err," encrypt PEM output with cbc seed\n");
187 BIO_printf(bio_err," -aes128, -aes192, -aes256\n");
188 BIO_printf(bio_err," encrypt PEM output with cbc aes\n");
191 BIO_printf(bio_err," -camellia128, -camellia192, -camellia256\n");
192 BIO_printf(bio_err," encrypt PEM output with cbc camellia\n");
195 BIO_printf(bio_err," -engine e - use engine e, possibly a hardware device.\n");
197 BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
198 BIO_printf(bio_err," - load the file (or the files in the directory) into\n");
199 BIO_printf(bio_err," the random number generator\n");
200 BIO_printf(bio_err," dsaparam-file\n");
201 BIO_printf(bio_err," - a DSA parameter file as generated by the dsaparam command\n");
206 setup_engine(bio_err, engine, 0);
209 if(!app_passwd(bio_err, NULL, passargout, NULL, &passout)) {
210 BIO_printf(bio_err, "Error getting password\n");
224 BIO_printf(bio_err,"unable to load DSA parameter file\n");
252 if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL)
254 BIO_printf(bio_err,"warning, not much extra random data, consider using the -rand option\n");
257 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
260 BIO_printf(bio_err,"Generating DSA key, %d bits\n",
264 app_RAND_write_file(NULL, bio_err);
271 ERR_print_errors(bio_err);