| /src/external/bsd/wpa/dist/src/tls/ |
| tlsv1_cred.h | 45 int tlsv1_set_dhparams(struct tlsv1_credentials *cred, const char *dh_file,
|
| tlsv1_cred.c | 1183 * @dh_file: File or reference name for the DH params in PEM or DER format 1188 int tlsv1_set_dhparams(struct tlsv1_credentials *cred, const char *dh_file, 1194 if (dh_file) { 1199 buf = (u8 *) os_readfile(dh_file, &len); 1202 dh_file);
|
| /src/external/bsd/wpa/dist/src/ap/ |
| authsrv.c | 291 hapd->conf->private_key || hapd->conf->dh_file || 326 params.dh_file = hapd->conf->dh_file;
|
| ap_config.h | 435 char *dh_file; member in struct:hostapd_bss_config
|
| ap_config.c | 855 os_free(conf->dh_file);
|
| /src/external/bsd/wpa/dist/src/crypto/ |
| tls_openssl.c | 4155 static int tls_global_dh(struct tls_data *data, const char *dh_file) 4158 if (dh_file == NULL) 4161 "dh_file specified"); 4173 if (!dh_file) { 4178 bio = BIO_new_file(dh_file, "r"); 4181 dh_file, ERR_error_string(ERR_get_error(), NULL)); 4191 dh_file, ERR_error_string(ERR_get_error(), NULL)); 4219 dh_file); 4230 dh_file, ERR_error_string(ERR_get_error(), NULL)); 4242 if (!dh_file) { [all...] |
| tls.h | 158 * @dh_file: File name for DH/DSA data in PEM format, or %NULL if not used 206 const char *dh_file; member in struct:tls_connection_params
|
| tls_wolfssl.c | 1463 static int tls_global_dh(void *ssl_ctx, const char *dh_file) 1467 if (dh_file) { 1468 if (wolfSSL_CTX_SetTmpDH_file(ctx, dh_file, SSL_FILETYPE_PEM) < 1472 if (wolfSSL_CTX_SetTmpDH_file(ctx, dh_file, 1553 if (tls_global_dh(tls_ctx, params->dh_file) < 0) { 1555 params->dh_file);
|
| tls_internal.c | 338 if (tlsv1_set_dhparams(cred, params->dh_file, NULL, 0)) {
|
| /src/external/bsd/wpa/dist/hostapd/ |
| config_file.c | 2669 } else if (os_strcmp(buf, "dh_file") == 0) { 2670 os_free(bss->dh_file); 2671 bss->dh_file = os_strdup(pos);
|