Lines Matching refs:bio_err

111 	if(!bio_err) bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
113 if (!load_config(bio_err, NULL))
184 BIO_printf(bio_err, "A private key is needed for this operation\n");
189 e = setup_engine(bio_err, engine, 0);
191 if(!app_passwd(bio_err, passargin, NULL, &passin, NULL)) {
192 BIO_printf(bio_err, "Error getting password\n");
197 app_RAND_load_file(NULL, bio_err, 0);
201 pkey = load_key(bio_err, keyfile, keyform, 0,
206 pkey = load_pubkey(bio_err, keyfile, keyform, 0,
211 x = load_cert(bio_err, keyfile, keyform,
228 BIO_printf(bio_err, "Error getting RSA key\n");
229 ERR_print_errors(bio_err);
236 BIO_printf(bio_err, "Error Reading Input File\n");
237 ERR_print_errors(bio_err);
244 BIO_printf(bio_err, "Error Reading Output File\n");
245 ERR_print_errors(bio_err);
266 BIO_printf(bio_err, "Error reading input Data\n");
299 BIO_printf(bio_err, "RSA operation error\n");
300 ERR_print_errors(bio_err);
306 ERR_print_errors(bio_err);
322 BIO_printf(bio_err, "Usage: rsautl [options]\n");
323 BIO_printf(bio_err, "-in file input file\n");
324 BIO_printf(bio_err, "-out file output file\n");
325 BIO_printf(bio_err, "-inkey file input key\n");
326 BIO_printf(bio_err, "-keyform arg private key format - default PEM\n");
327 BIO_printf(bio_err, "-pubin input is an RSA public\n");
328 BIO_printf(bio_err, "-certin input is a certificate carrying an RSA public key\n");
329 BIO_printf(bio_err, "-ssl use SSL v2 padding\n");
330 BIO_printf(bio_err, "-raw use no padding\n");
331 BIO_printf(bio_err, "-pkcs use PKCS#1 v1.5 padding (default)\n");
332 BIO_printf(bio_err, "-oaep use PKCS#1 OAEP\n");
333 BIO_printf(bio_err, "-sign sign with private key\n");
334 BIO_printf(bio_err, "-verify verify with public key\n");
335 BIO_printf(bio_err, "-encrypt encrypt with public key\n");
336 BIO_printf(bio_err, "-decrypt decrypt with private key\n");
337 BIO_printf(bio_err, "-hexdump hex dump output\n");
339 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
340 BIO_printf (bio_err, "-passin arg pass phrase source\n");