Lines Matching defs:file
7 * this file except in compliance with the License. You can obtain a copy
8 * in the file LICENSE in the source distribution or at
30 * recursive header file inclusion, resulting in the compiler complaining
449 /* File to load OCSP Response from (or NULL if no file) */
573 * file, or from an OCSP responder.
589 BIO_puts(bio_err, "cert_status: Cannot open OCSP response file\n");
754 {"CAfile", OPT_CAFILE, '<', "PEM format file of CA's"},
758 "Do not load the default certificates file"},
768 {"cert", OPT_CERT, '<', "Server certificate file to use; default " TEST_CERT},
770 "Certificate file to use for servername; default " TEST_CERT2},
772 "Server certificate file format (PEM/DER/P12); has no effect"},
774 "Server certificate chain file in PEM format"},
777 "PEM serverinfo file for certificate"},
779 "Private key file to use; default is -cert file or else" TEST_CERT},
781 "-Private Key file to use for servername if not in -cert2"},
783 {"pass", OPT_PASS, 's', "Private key and cert file pass phrase source"},
785 "Second server certificate file to use (usually for DSA)"},
787 "Second server certificate file format (PEM/DER/P12); has no effect"},
789 "second server certificate chain file in PEM format"},
791 "Second private key file to use (usually for DSA)"},
793 "Second key file format (ENGINE, other values ignored)"},
795 "Second private key and cert file pass phrase source"},
796 {"dhparam", OPT_DHPARAM, '<', "DH parameters file to use"},
807 {"WWW", OPT_UPPER_WWW, '-', "Respond to a 'GET with the file ./path"},
819 {"CRL", OPT_CRL, '<', "CRL file to use"},
820 {"CRLform", OPT_CRLFORM, 'F', "CRL file format (PEM or DER); default PEM"},
824 "CA file for certificate chain (PEM format)"},
830 "CA file for certificate verification (PEM format)"},
881 {"keylogfile", OPT_KEYLOG_FILE, '>', "Write TLS secrets to file"},
901 {"srpvfile", OPT_SRPVFILE, '<', "(deprecated) The verifier file for SRP"},
962 {"sendfile", OPT_SENDFILE, '-', "Use sendfile to response file with -WWW"},
1397 BIO_printf(bio_err, "Error writing file %s\n", opt_arg());
2137 BIO_printf(bio_err, "Can't open PSK session file %s\n", psksessf);
2144 BIO_printf(bio_err, "Can't read PSK session file %s\n", psksessf);
3299 BIO *file;
3337 BIO_printf(io, "'%s' is an invalid file name\r\n", p);
3362 if ((file = BIO_new_file(p, opmode)) == NULL) {
3383 /* send the file */
3396 BIO_get_fp(file, &fp);
3430 i = BIO_read(file, buf, bufsize);
3465 BIO_free(file);