• 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

131     if (bio_err == NULL ) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
133 if (!load_config(bio_err, NULL))
186 BIO_printf(bio_err,
199 BIO_printf(bio_err,
285 BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
286 BIO_printf (bio_err, "where options are\n");
287 BIO_printf (bio_err, "-export output PKCS12 file\n");
288 BIO_printf (bio_err, "-chain add certificate chain\n");
289 BIO_printf (bio_err, "-inkey file private key if not infile\n");
290 BIO_printf (bio_err, "-certfile f add all certs in f\n");
291 BIO_printf (bio_err, "-CApath arg - PEM format directory of CA's\n");
292 BIO_printf (bio_err, "-CAfile arg - PEM format file of CA's\n");
293 BIO_printf (bio_err, "-name \"name\" use name as friendly name\n");
294 BIO_printf (bio_err, "-caname \"nm\" use nm as CA friendly name (can be used more than once).\n");
295 BIO_printf (bio_err, "-in infile input filename\n");
296 BIO_printf (bio_err, "-out outfile output filename\n");
297 BIO_printf (bio_err, "-noout don't output anything, just verify.\n");
298 BIO_printf (bio_err, "-nomacver don't verify MAC.\n");
299 BIO_printf (bio_err, "-nocerts don't output certificates.\n");
300 BIO_printf (bio_err, "-clcerts only output client certificates.\n");
301 BIO_printf (bio_err, "-cacerts only output CA certificates.\n");
302 BIO_printf (bio_err, "-nokeys don't output private keys.\n");
303 BIO_printf (bio_err, "-info give info about PKCS#12 structure.\n");
304 BIO_printf (bio_err, "-des encrypt private keys with DES\n");
305 BIO_printf (bio_err, "-des3 encrypt private keys with triple DES (default)\n");
307 BIO_printf (bio_err, "-idea encrypt private keys with idea\n");
310 BIO_printf (bio_err, "-aes128, -aes192, -aes256\n");
311 BIO_printf (bio_err, " encrypt PEM output with cbc aes\n");
314 BIO_printf (bio_err, "-camellia128, -camellia192, -camellia256\n");
315 BIO_printf (bio_err, " encrypt PEM output with cbc camellia\n");
317 BIO_printf (bio_err, "-nodes don't encrypt private keys\n");
318 BIO_printf (bio_err, "-noiter don't use encryption iteration\n");
319 BIO_printf (bio_err, "-maciter use MAC iteration\n");
320 BIO_printf (bio_err, "-twopass separate MAC, encryption passwords\n");
321 BIO_printf (bio_err, "-descert encrypt PKCS#12 certificates with triple DES (default RC2-40)\n");
322 BIO_printf (bio_err, "-certpbe alg specify certificate PBE algorithm (default RC2-40)\n");
323 BIO_printf (bio_err, "-keypbe alg specify private key PBE algorithm (default 3DES)\n");
324 BIO_printf (bio_err, "-keyex set MS key exchange type\n");
325 BIO_printf (bio_err, "-keysig set MS key signature type\n");
326 BIO_printf (bio_err, "-password p set import/export password source\n");
327 BIO_printf (bio_err, "-passin p input file pass phrase source\n");
328 BIO_printf (bio_err, "-passout p output file pass phrase source\n");
330 BIO_printf (bio_err, "-engine e use engine e, possibly a hardware device.\n");
332 BIO_printf(bio_err, "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
333 BIO_printf(bio_err, " load the file (or the files in the directory) into\n");
334 BIO_printf(bio_err, " the random number generator\n");
339 e = setup_engine(bio_err, engine, 0);
347 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
348 BIO_printf(bio_err, "Error getting passwords\n");
366 app_RAND_load_file(NULL, bio_err, (inrand != NULL));
368 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
380 BIO_printf(bio_err, "Error opening input file %s\n",
401 BIO_printf(bio_err, "Error opening output file %s\n",
412 BIO_printf (bio_err, "Can't read Password\n");
429 BIO_printf(bio_err, "Nothing to do!\n");
442 key = load_key(bio_err, keyname ? keyname : infile,
456 certs = load_certs(bio_err, infile, FORMAT_PEM, NULL, e,
480 BIO_printf(bio_err, "No certificate matches private key\n");
496 if(!(morecerts = load_certs(bio_err, certfile, FORMAT_PEM,
522 BIO_printf (bio_err, "Memory allocation error\n");
540 BIO_printf (bio_err, "Error %s getting chain.\n",
543 ERR_print_errors(bio_err);
569 BIO_printf (bio_err, "Can't read Password\n");
584 ERR_print_errors (bio_err);
619 ERR_print_errors(bio_err);
627 BIO_printf (bio_err, "Can't read Password\n");
636 if (options & INFO) BIO_printf (bio_err, "MAC Iteration %ld\n", p12->mac->iter ? ASN1_INTEGER_get (p12->mac->iter) : 1);
646 BIO_printf (bio_err, "Mac verify error: invalid password?\n");
647 ERR_print_errors (bio_err);
650 BIO_printf (bio_err, "MAC verified OK\n");
660 BIO_printf(bio_err, "Error outputting keys and certificates\n");
661 ERR_print_errors (bio_err);
670 if(export_cert || inrand) app_RAND_write_file(NULL, bio_err);
698 if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
701 BIO_printf(bio_err, "PKCS7 Encrypted data: ");
702 alg_print(bio_err,
749 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
761 BIO_printf (bio_err, "Shrouded Keybag: ");
762 alg_print (bio_err, bag->value.shkeybag->algor);
779 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
794 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
800 BIO_printf (bio_err, "Warning unsupported bag type: ");
801 i2a_ASN1_OBJECT (bio_err, bag->type);
802 BIO_printf (bio_err, "\n");
848 BIO_printf (bio_err, "%s, Iteration %ld\n",