• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/apps/

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 Writing Output File\n");
254 ERR_print_errors(bio_err);
272 BIO_printf(bio_err, "Out of memory\n");
273 ERR_print_errors(bio_err);
280 BIO_printf(bio_err, "Error reading input Data\n");
315 BIO_printf(bio_err, "RSA operation error\n");
316 ERR_print_errors(bio_err);
322 ERR_print_errors(bio_err);
343 BIO_printf(bio_err, "Usage: rsautl [options]\n");
344 BIO_printf(bio_err, "-in file input file\n");
345 BIO_printf(bio_err, "-out file output file\n");
346 BIO_printf(bio_err, "-inkey file input key\n");
347 BIO_printf(bio_err, "-keyform arg private key format - default PEM\n");
348 BIO_printf(bio_err, "-pubin input is an RSA public\n");
349 BIO_printf(bio_err,
351 BIO_printf(bio_err, "-ssl use SSL v2 padding\n");
352 BIO_printf(bio_err, "-raw use no padding\n");
353 BIO_printf(bio_err,
355 BIO_printf(bio_err, "-oaep use PKCS#1 OAEP\n");
356 BIO_printf(bio_err, "-sign sign with private key\n");
357 BIO_printf(bio_err, "-verify verify with public key\n");
358 BIO_printf(bio_err, "-encrypt encrypt with public key\n");
359 BIO_printf(bio_err, "-decrypt decrypt with private key\n");
360 BIO_printf(bio_err, "-hexdump hex dump output\n");
362 BIO_printf(bio_err,
364 BIO_printf(bio_err, "-passin arg pass phrase source\n");