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))
180 BIO_printf(bio_err, "unknown option %s\n", *argv);
190 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
191 BIO_printf(bio_err, "where options are\n");
192 BIO_printf(bio_err, " -inform arg input format - DER or PEM\n");
193 BIO_printf(bio_err, " -outform arg output format - DER or PEM\n");
194 BIO_printf(bio_err, " -in arg input file\n");
195 BIO_printf(bio_err,
197 BIO_printf(bio_err, " -out arg output file\n");
198 BIO_printf(bio_err,
201 BIO_printf(bio_err,
204 BIO_printf(bio_err,
206 BIO_printf(bio_err,
209 BIO_printf(bio_err,
213 BIO_printf(bio_err, " -aes128, -aes192, -aes256\n");
214 BIO_printf(bio_err,
218 BIO_printf(bio_err, " -camellia128, -camellia192, -camellia256\n");
219 BIO_printf(bio_err,
223 BIO_printf(bio_err,
226 BIO_printf(bio_err, " -text print the key in text\n");
227 BIO_printf(bio_err, " -noout don't print key out\n");
228 BIO_printf(bio_err, " -modulus print the DSA public value\n");
235 e = setup_engine(bio_err, engine, 0);
238 if (!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
239 BIO_printf(bio_err, "Error getting passwords\n");
245 ERR_print_errors(bio_err);
249 BIO_printf(bio_err, "read DSA key\n");
253 pkey = load_pubkey(bio_err, infile, informat, 1,
256 pkey = load_key(bio_err, infile, informat, 1,
264 BIO_printf(bio_err, "unable to load Key\n");
265 ERR_print_errors(bio_err);
287 ERR_print_errors(bio_err);
299 BIO_printf(bio_err, "writing DSA key\n");
312 BIO_printf(bio_err, "bad output format specified for outfile\n");
316 BIO_printf(bio_err, "unable to write private key\n");
317 ERR_print_errors(bio_err);