Home | History | Annotate | Download | only in apps

Lines Matching full:bio_err

86 	if (bio_err == NULL)
87 bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
89 if (!load_config(bio_err, NULL))
175 BIO_printf(bio_err, "Unknown cipher %s\n",
186 BIO_printf(bio_err, "Usage pkey [options]\n");
187 BIO_printf(bio_err, "where options are\n");
188 BIO_printf(bio_err, "-in file input file\n");
189 BIO_printf(bio_err, "-inform X input format (DER or PEM)\n");
190 BIO_printf(bio_err, "-passin arg input file pass phrase source\n");
191 BIO_printf(bio_err, "-outform X output format (DER or PEM)\n");
192 BIO_printf(bio_err, "-out file output file\n");
193 BIO_printf(bio_err, "-passout arg output file pass phrase source\n");
195 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
201 e = setup_engine(bio_err, engine, 0);
204 if (!app_passwd(bio_err, passargin, passargout, &passin, &passout))
206 BIO_printf(bio_err, "Error getting passwords\n");
214 BIO_printf(bio_err,
231 pkey = load_pubkey(bio_err, infile, informat, 1,
234 pkey = load_key(bio_err, infile, informat, 1,
258 BIO_printf(bio_err, "Bad format specified for key\n");