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

Lines Matching refs:bio_err

111 	if(!bio_err) bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
113 if (!load_config(bio_err, NULL))
172 BIO_printf(bio_err, "A private key is needed for this operation\n");
177 e = setup_engine(bio_err, engine, 0);
179 if(!app_passwd(bio_err, passargin, NULL, &passin, NULL)) {
180 BIO_printf(bio_err, "Error getting password\n");
185 app_RAND_load_file(NULL, bio_err, 0);
189 pkey = load_key(bio_err, keyfile, keyform, 0,
194 pkey = load_pubkey(bio_err, keyfile, keyform, 0,
199 x = load_cert(bio_err, keyfile, keyform,
216 BIO_printf(bio_err, "Error getting RSA key\n");
217 ERR_print_errors(bio_err);
224 BIO_printf(bio_err, "Error Reading Input File\n");
225 ERR_print_errors(bio_err);
232 BIO_printf(bio_err, "Error Reading Output File\n");
233 ERR_print_errors(bio_err);
254 BIO_printf(bio_err, "Error reading input Data\n");
287 BIO_printf(bio_err, "RSA operation error\n");
288 ERR_print_errors(bio_err);
294 ERR_print_errors(bio_err);
310 BIO_printf(bio_err, "Usage: rsautl [options]\n");
311 BIO_printf(bio_err, "-in file input file\n");
312 BIO_printf(bio_err, "-out file output file\n");
313 BIO_printf(bio_err, "-inkey file input key\n");
314 BIO_printf(bio_err, "-keyform arg private key format - default PEM\n");
315 BIO_printf(bio_err, "-pubin input is an RSA public\n");
316 BIO_printf(bio_err, "-certin input is a certificate carrying an RSA public key\n");
317 BIO_printf(bio_err, "-ssl use SSL v2 padding\n");
318 BIO_printf(bio_err, "-raw use no padding\n");
319 BIO_printf(bio_err, "-pkcs use PKCS#1 v1.5 padding (default)\n");
320 BIO_printf(bio_err, "-oaep use PKCS#1 OAEP\n");
321 BIO_printf(bio_err, "-sign sign with private key\n");
322 BIO_printf(bio_err, "-verify verify with public key\n");
323 BIO_printf(bio_err, "-encrypt encrypt with public key\n");
324 BIO_printf(bio_err, "-decrypt decrypt with private key\n");
325 BIO_printf(bio_err, "-hexdump hex dump output\n");
327 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
328 BIO_printf (bio_err, "-passin arg pass phrase source\n");