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

Lines Matching refs:bio_err

139     if (bio_err == NULL)
140 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
142 if (!load_config(bio_err, NULL))
227 if (!set_pbe(bio_err, &cert_pbe, *++args))
230 if (!set_pbe(bio_err, &key_pbe, *++args))
332 BIO_printf(bio_err, "Usage: pkcs12 [options]\n");
333 BIO_printf(bio_err, "where options are\n");
334 BIO_printf(bio_err, "-export output PKCS12 file\n");
335 BIO_printf(bio_err, "-chain add certificate chain\n");
336 BIO_printf(bio_err, "-inkey file private key if not infile\n");
337 BIO_printf(bio_err, "-certfile f add all certs in f\n");
338 BIO_printf(bio_err, "-CApath arg - PEM format directory of CA's\n");
339 BIO_printf(bio_err, "-CAfile arg - PEM format file of CA's\n");
340 BIO_printf(bio_err, "-name \"name\" use name as friendly name\n");
341 BIO_printf(bio_err,
343 BIO_printf(bio_err, "-in infile input filename\n");
344 BIO_printf(bio_err, "-out outfile output filename\n");
345 BIO_printf(bio_err,
347 BIO_printf(bio_err, "-nomacver don't verify MAC.\n");
348 BIO_printf(bio_err, "-nocerts don't output certificates.\n");
349 BIO_printf(bio_err,
351 BIO_printf(bio_err, "-cacerts only output CA certificates.\n");
352 BIO_printf(bio_err, "-nokeys don't output private keys.\n");
353 BIO_printf(bio_err,
355 BIO_printf(bio_err, "-des encrypt private keys with DES\n");
356 BIO_printf(bio_err,
359 BIO_printf(bio_err, "-idea encrypt private keys with idea\n");
362 BIO_printf(bio_err, "-seed encrypt private keys with seed\n");
365 BIO_printf(bio_err, "-aes128, -aes192, -aes256\n");
366 BIO_printf(bio_err,
370 BIO_printf(bio_err, "-camellia128, -camellia192, -camellia256\n");
371 BIO_printf(bio_err,
374 BIO_printf(bio_err, "-nodes don't encrypt private keys\n");
375 BIO_printf(bio_err, "-noiter don't use encryption iteration\n");
376 BIO_printf(bio_err, "-nomaciter don't use MAC iteration\n");
377 BIO_printf(bio_err, "-maciter use MAC iteration\n");
378 BIO_printf(bio_err, "-nomac don't generate MAC\n");
379 BIO_printf(bio_err,
381 BIO_printf(bio_err,
383 BIO_printf(bio_err,
385 BIO_printf(bio_err,
387 BIO_printf(bio_err,
389 BIO_printf(bio_err, "-keyex set MS key exchange type\n");
390 BIO_printf(bio_err, "-keysig set MS key signature type\n");
391 BIO_printf(bio_err,
393 BIO_printf(bio_err, "-passin p input file pass phrase source\n");
394 BIO_printf(bio_err, "-passout p output file pass phrase source\n");
396 BIO_printf(bio_err,
399 BIO_printf(bio_err, "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR,
401 BIO_printf(bio_err,
403 BIO_printf(bio_err, " the random number generator\n");
404 BIO_printf(bio_err, "-CSP name Microsoft CSP name\n");
405 BIO_printf(bio_err,
410 e = setup_engine(bio_err, engine, 0);
420 if (!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
421 BIO_printf(bio_err, "Error getting passwords\n");
441 app_RAND_load_file(NULL, bio_err, (inrand != NULL));
443 BIO_printf(bio_err, "%ld semi-random bytes loaded\n",
457 BIO_printf(bio_err, "Error opening input file %s\n",
478 BIO_printf(bio_err, "Error opening output file %s\n",
489 BIO_printf(bio_err, "Can't read Password\n");
506 BIO_printf(bio_err, "Nothing to do!\n");
518 key = load_key(bio_err, keyname ? keyname : infile,
530 certs = load_certs(bio_err, infile, FORMAT_PEM, NULL, e,
550 BIO_printf(bio_err,
565 if (!(morecerts = load_certs(bio_err, certfile, FORMAT_PEM,
589 BIO_printf(bio_err, "Memory allocation error\n");
607 BIO_printf(bio_err, "Error %s getting chain.\n",
610 ERR_print_errors(bio_err);
638 BIO_printf(bio_err, "Can't read Password\n");
653 ERR_print_errors(bio_err);
660 BIO_printf(bio_err, "Unknown digest algorithm %s\n", macalg);
698 ERR_print_errors(bio_err);
707 BIO_printf(bio_err, "Can't read Password\n");
718 BIO_printf(bio_err, "MAC Iteration %ld\n",
730 BIO_printf(bio_err, "Mac verify error: invalid password?\n");
731 ERR_print_errors(bio_err);
734 BIO_printf(bio_err, "MAC verified OK\n");
743 BIO_printf(bio_err, "Error outputting keys and certificates\n");
744 ERR_print_errors(bio_err);
755 app_RAND_write_file(NULL, bio_err);
788 BIO_printf(bio_err, "PKCS7 Data\n");
791 BIO_printf(bio_err, "PKCS7 Encrypted data: ");
792 alg_print(bio_err, p7->d.encrypted->enc_data->algorithm);
839 BIO_printf(bio_err, "Key bag\n");
853 BIO_printf(bio_err, "Shrouded Keybag: ");
854 alg_print(bio_err, bag->value.shkeybag->algor);
873 BIO_printf(bio_err, "Certificate bag\n");
893 BIO_printf(bio_err, "Safe Contents bag\n");
899 BIO_printf(bio_err, "Warning unsupported bag type: ");
900 i2a_ASN1_OBJECT(bio_err, bag->type);
901 BIO_printf(bio_err, "\n");
940 BIO_printf(bio_err, "%s, Iteration %ld\n",
1052 BIO_printf(bio_err, "Unknown PBE algorithm %s\n", str);