Home
last modified time | relevance | path

Searched refs:dhpfile (Results 1 – 3 of 3) sorted by relevance

/dports/net-mgmt/wmi-client/wmi-1.3.16/Samba/source/lib/tls/
H A Dtls.c363 const char *dhpfile = private_path(tmp_ctx, lp_tls_dhpfile()); in tls_initialise() local
420 if (dhpfile && *dhpfile) { in tls_initialise()
423 dhparms.data = (uint8_t *)file_load(dhpfile, &size, mem_ctx); in tls_initialise()
426 DEBUG(0,("Failed to read DH Parms from %s\n", dhpfile)); in tls_initialise()
/dports/security/py-m2crypto/M2Crypto-0.38.0/src/M2Crypto/SSL/
H A DContext.py255 def set_tmp_dh(self, dhpfile): argument
262 f = BIO.openfile(dhpfile)
/dports/irc/inspircd/inspircd-3.11.0/src/modules/extra/
H A Dm_ssl_openssl.cpp134 BIO* dhpfile = BIO_new_file(filename.c_str(), "r"); in DHParams() local
135 if (dhpfile == NULL) in DHParams()
138 dh = PEM_read_bio_DHparams(dhpfile, NULL, NULL, NULL); in DHParams()
139 BIO_free(dhpfile); in DHParams()