Lines Matching refs:FILE
165 recursive header file inclusion, resulting in the compiler complaining
251 /* static int load_CA(SSL_CTX *ctx, char *file);*/
466 BIO_printf(bio_err," -cert arg - certificate file to use\n");
469 " The CRL(s) are appended to the certificate file\n");
472 " the certificate file.\n");
474 BIO_printf(bio_err," -key arg - Private Key file to use, in cert file if\n");
477 BIO_printf(bio_err," -pass arg - private key file pass phrase source\n");
478 BIO_printf(bio_err," -dcert arg - second certificate file to use (usually for DSA)\n");
480 BIO_printf(bio_err," -dkey arg - second private key file to use (usually for DSA)\n");
482 BIO_printf(bio_err," -dpass arg - second private key file pass phrase source\n");
483 BIO_printf(bio_err," -dhparam arg - DH parameter file to use, in cert file if not specified\n");
499 BIO_printf(bio_err," -CAfile arg - PEM format file of CA's\n");
513 BIO_printf(bio_err," -srpvfile file - The verifier file for SRP\n");
538 BIO_printf(bio_err," -WWW - Respond to a 'GET /<path> HTTP/1.0' with file ./<path>\n");
539 BIO_printf(bio_err," -HTTP - Respond to a 'GET /<path> HTTP/1.0' with file ./<path>\n");
545 BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
549 BIO_printf(bio_err," -cert2 arg - certificate file to use for servername\n");
551 BIO_printf(bio_err," -key2 arg - Private Key file to use for servername, in cert file if\n");
1398 "server certificate private key file");
1406 NULL, e, "server certificate file");
1418 "second server certificate private key file");
1426 NULL, e, "second server certificate file");
1462 "second certificate private key file");
1470 NULL, e, "second server certificate file");
1563 BIO_printf(bio_err,"You must specify a certificate file for the server to use\n");
1855 "Cannot initialize SRP verifier file \"%s\":ret=%d\n",
2519 static int load_CA(SSL_CTX *ctx, char *file)
2521 FILE *in;
2524 if ((in=fopen(file,"r")) == NULL)
2768 BIO *file;
2801 BIO_printf(io,"'%s' is an invalid file name\r\n",p);
2838 if ((file=BIO_new_file(p,"r")) == NULL)
2847 BIO_printf(bio_err,"FILE:%s\n",p);
2859 /* send the file */
2862 i=BIO_read(file,buf,bufsize);
2898 BIO_free(file);