• 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

308 	BIO_printf(bio_err,"usage: s_server [args ...]\n");
309 BIO_printf(bio_err,"\n");
310 BIO_printf(bio_err," -accept arg - port to accept on (default is %d)\n",PORT);
311 BIO_printf(bio_err," -context arg - set session ID context\n");
312 BIO_printf(bio_err," -verify arg - turn on peer certificate verification\n");
313 BIO_printf(bio_err," -Verify arg - turn on peer certificate verification, must have a cert.\n");
314 BIO_printf(bio_err," -cert arg - certificate file to use\n");
315 BIO_printf(bio_err," (default is %s)\n",TEST_CERT);
316 BIO_printf(bio_err," -certform arg - certificate format (PEM or DER) PEM default\n");
317 BIO_printf(bio_err," -key arg - Private Key file to use, in cert file if\n");
318 BIO_printf(bio_err," not specified (default is %s)\n",TEST_CERT);
319 BIO_printf(bio_err," -keyform arg - key format (PEM, DER or ENGINE) PEM default\n");
320 BIO_printf(bio_err," -pass arg - private key file pass phrase source\n");
321 BIO_printf(bio_err," -dcert arg - second certificate file to use (usually for DSA)\n");
322 BIO_printf(bio_err," -dcertform x - second certificate format (PEM or DER) PEM default\n");
323 BIO_printf(bio_err," -dkey arg - second private key file to use (usually for DSA)\n");
324 BIO_printf(bio_err," -dkeyform arg - second key format (PEM, DER or ENGINE) PEM default\n");
325 BIO_printf(bio_err," -dpass arg - second private key file pass phrase source\n");
326 BIO_printf(bio_err," -dhparam arg - DH parameter file to use, in cert file if not specified\n");
327 BIO_printf(bio_err," or a default set of parameters is used\n");
329 BIO_printf(bio_err," -named_curve arg - Elliptic curve name to use for ephemeral ECDH keys.\n" \
334 BIO_printf(bio_err," -nbio - Run with non-blocking IO\n");
336 BIO_printf(bio_err," -nbio_test - test with the non-blocking test bio\n");
337 BIO_printf(bio_err," -crlf - convert LF from terminal into CRLF\n");
338 BIO_printf(bio_err," -debug - Print more output\n");
339 BIO_printf(bio_err," -msg - Show protocol messages\n");
340 BIO_printf(bio_err," -state - Print the SSL states\n");
341 BIO_printf(bio_err," -CApath arg - PEM format directory of CA's\n");
342 BIO_printf(bio_err," -CAfile arg - PEM format file of CA's\n");
343 BIO_printf(bio_err," -nocert - Don't use any certificates (Anon-DH)\n");
344 BIO_printf(bio_err," -cipher arg - play with 'openssl ciphers' to see what goes here\n");
345 BIO_printf(bio_err," -serverpref - Use server's cipher preferences\n");
346 BIO_printf(bio_err," -quiet - No server output\n");
347 BIO_printf(bio_err," -no_tmp_rsa - Do not generate a tmp RSA key\n");
348 BIO_printf(bio_err," -ssl2 - Just talk SSLv2\n");
349 BIO_printf(bio_err," -ssl3 - Just talk SSLv3\n");
350 BIO_printf(bio_err," -tls1 - Just talk TLSv1\n");
351 BIO_printf(bio_err," -dtls1 - Just talk DTLSv1\n");
352 BIO_printf(bio_err," -timeout - Enable timeouts\n");
353 BIO_printf(bio_err," -mtu - Set MTU\n");
354 BIO_printf(bio_err," -chain - Read a certificate chain\n");
355 BIO_printf(bio_err," -no_ssl2 - Just disable SSLv2\n");
356 BIO_printf(bio_err," -no_ssl3 - Just disable SSLv3\n");
357 BIO_printf(bio_err," -no_tls1 - Just disable TLSv1\n");
359 BIO_printf(bio_err," -no_dhe - Disable ephemeral DH\n");
362 BIO_printf(bio_err," -no_ecdhe - Disable ephemeral ECDH\n");
364 BIO_printf(bio_err," -bugs - Turn on SSL bug compatibility\n");
365 BIO_printf(bio_err," -www - Respond to a 'GET /' with a status page\n");
366 BIO_printf(bio_err," -WWW - Respond to a 'GET /<path> HTTP/1.0' with file ./<path>\n");
367 BIO_printf(bio_err," -HTTP - Respond to a 'GET /<path> HTTP/1.0' with file ./<path>\n");
368 BIO_printf(bio_err," with the assumption it contains a complete HTTP response.\n");
370 BIO_printf(bio_err," -engine id - Initialise and use the specified engine\n");
372 BIO_printf(bio_err," -id_prefix arg - Generate SSL/TLS session IDs prefixed by 'arg'\n");
373 BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
579 if (bio_err == NULL)
580 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
582 if (!load_config(bio_err, NULL))
608 BIO_printf(bio_err,"verify depth is %d\n",verify_depth);
616 BIO_printf(bio_err,"verify depth is %d, must return a certificate\n",verify_depth);
804 BIO_printf(bio_err,"unknown option %s\n",*argv);
822 e = setup_engine(bio_err, engine_id, 1);
825 if (!app_passwd(bio_err, passarg, dpassarg, &pass, &dpass))
827 BIO_printf(bio_err, "Error getting password\n");
837 s_key = load_key(bio_err, s_key_file, s_key_format, 0, pass, e,
841 ERR_print_errors(bio_err);
845 s_cert = load_cert(bio_err,s_cert_file,s_cert_format,
850 ERR_print_errors(bio_err);
861 s_dkey = load_key(bio_err, s_dkey_file, s_dkey_format,
866 ERR_print_errors(bio_err);
870 s_dcert = load_cert(bio_err,s_dcert_file,s_dcert_format,
875 ERR_print_errors(bio_err);
881 if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL
884 BIO_printf(bio_err,"warning, not much extra random data, consider using the -rand option\n");
887 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
916 ERR_print_errors(bio_err);
922 BIO_printf(bio_err,
925 BIO_printf(bio_err,
929 BIO_printf(bio_err,"error setting 'id_prefix'\n");
930 ERR_print_errors(bio_err);
933 BIO_printf(bio_err,"id_prefix '%s' set.\n", session_id_prefix);
955 BIO_printf(bio_err,"You must specify a certificate file for the server to use\n");
963 /* BIO_printf(bio_err,"X509_load_verify_locations\n"); */
964 ERR_print_errors(bio_err);
1007 BIO_printf(bio_err, "unknown curve name (%s)\n",
1014 BIO_printf(bio_err, "unable to create curve (%s)\n",
1030 BIO_printf(bio_err, "unable to create curve (sect163r2)\n");
1065 ERR_print_errors(bio_err);
1076 BIO_printf(bio_err,"error setting cipher list\n");
1077 ERR_print_errors(bio_err);
1157 BIO_printf(bio_err,"out of memory\n");
1166 BIO_printf(bio_err,"turning on non blocking io\n");
1168 ERR_print_errors(bio_err);
1388 ERR_print_errors(bio_err);
1441 ERR_print_errors(bio_err);
1473 BIO_printf(bio_err,"shutdown accept socket\n");
1496 BIO_printf(bio_err,"ERROR\n");
1500 BIO_printf(bio_err,"verify error:%s\n",
1504 ERR_print_errors(bio_err);
1599 BIO_printf(bio_err,"turning on non blocking io\n");
1601 ERR_print_errors(bio_err);
1682 ERR_print_errors(bio_err);
1873 BIO_printf(bio_err,"FILE:%s\n",p);
1969 BIO_printf(bio_err,"Allocation error in generating RSA key\n");
1974 BIO_printf(bio_err,"Generating temp (%d bit) RSA key...",keylength);
1975 (void)BIO_flush(bio_err);
1985 BIO_printf(bio_err,"\n");
1986 (void)BIO_flush(bio_err);