Lines Matching refs:bio_err

102 	if (!bio_err) bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
104 if (!load_config(bio_err, NULL))
168 BIO_printf(bio_err,"%s [options]\n",prog);
169 BIO_printf(bio_err,"where options are\n");
170 BIO_printf(bio_err," -in arg input file\n");
171 BIO_printf(bio_err," -out arg output file\n");
172 BIO_printf(bio_err," -key arg create SPKAC using private key\n");
173 BIO_printf(bio_err," -passin arg input file pass phrase source\n");
174 BIO_printf(bio_err," -challenge arg challenge string\n");
175 BIO_printf(bio_err," -spkac arg alternative SPKAC name\n");
176 BIO_printf(bio_err," -noout don't print SPKAC\n");
177 BIO_printf(bio_err," -pubkey output public key\n");
178 BIO_printf(bio_err," -verify verify SPKAC signature\n");
180 BIO_printf(bio_err," -engine e use engine e, possibly a hardware device.\n");
186 if(!app_passwd(bio_err, passargin, NULL, &passin, NULL)) {
187 BIO_printf(bio_err, "Error getting password\n");
192 e = setup_engine(bio_err, engine, 0);
196 pkey = load_key(bio_err,
221 BIO_printf(bio_err, "Error opening output file\n");
222 ERR_print_errors(bio_err);
237 BIO_printf(bio_err, "Error opening input file\n");
238 ERR_print_errors(bio_err);
246 BIO_printf(bio_err, "Error parsing config file\n");
247 ERR_print_errors(bio_err);
254 BIO_printf(bio_err, "Can't find SPKAC called \"%s\"\n", spkac);
255 ERR_print_errors(bio_err);
262 BIO_printf(bio_err, "Error loading SPKAC\n");
263 ERR_print_errors(bio_err);
279 BIO_printf(bio_err, "Error opening output file\n");
280 ERR_print_errors(bio_err);
288 if (i > 0) BIO_printf(bio_err, "Signature OK\n");
290 BIO_printf(bio_err, "Signature Failure\n");
291 ERR_print_errors(bio_err);