Lines Matching refs:bio_err

112     if (!bio_err)
113 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
115 if (!load_config(bio_err, NULL))
195 BIO_printf(bio_err, "A private key is needed for this operation\n");
199 e = setup_engine(bio_err, engine, 0);
201 if (!app_passwd(bio_err, passargin, NULL, &passin, NULL)) {
202 BIO_printf(bio_err, "Error getting password\n");
207 app_RAND_load_file(NULL, bio_err, 0);
211 pkey = load_key(bio_err, keyfile, keyform, 0,
216 pkey = load_pubkey(bio_err, keyfile, keyform, 0,
221 x = load_cert(bio_err, keyfile, keyform, NULL, e, "Certificate");
237 BIO_printf(bio_err, "Error getting RSA key\n");
238 ERR_print_errors(bio_err);
244 BIO_printf(bio_err, "Error Reading Input File\n");
245 ERR_print_errors(bio_err);
253 BIO_printf(bio_err, "Error Reading Output File\n");
254 ERR_print_errors(bio_err);
275 BIO_printf(bio_err, "Error reading input Data\n");
310 BIO_printf(bio_err, "RSA operation error\n");
311 ERR_print_errors(bio_err);
317 ERR_print_errors(bio_err);
338 BIO_printf(bio_err, "Usage: rsautl [options]\n");
339 BIO_printf(bio_err, "-in file input file\n");
340 BIO_printf(bio_err, "-out file output file\n");
341 BIO_printf(bio_err, "-inkey file input key\n");
342 BIO_printf(bio_err, "-keyform arg private key format - default PEM\n");
343 BIO_printf(bio_err, "-pubin input is an RSA public\n");
344 BIO_printf(bio_err,
346 BIO_printf(bio_err, "-ssl use SSL v2 padding\n");
347 BIO_printf(bio_err, "-raw use no padding\n");
348 BIO_printf(bio_err,
350 BIO_printf(bio_err, "-oaep use PKCS#1 OAEP\n");
351 BIO_printf(bio_err, "-sign sign with private key\n");
352 BIO_printf(bio_err, "-verify verify with public key\n");
353 BIO_printf(bio_err, "-encrypt encrypt with public key\n");
354 BIO_printf(bio_err, "-decrypt decrypt with private key\n");
355 BIO_printf(bio_err, "-hexdump hex dump output\n");
357 BIO_printf(bio_err,
359 BIO_printf(bio_err, "-passin arg pass phrase source\n");