Searched refs:dh_file (Results 1 - 25 of 34) sorted by relevance

12

/external/wpa_supplicant_8/hostapd/src/tls/
H A Dtlsv1_cred.h37 int tlsv1_set_dhparams(struct tlsv1_credentials *cred, const char *dh_file,
H A Dtlsv1_cred.c477 * @dh_file: File or reference name for the DH params in PEM or DER format
482 int tlsv1_set_dhparams(struct tlsv1_credentials *cred, const char *dh_file, argument
488 if (dh_file) {
493 buf = (u8 *) os_readfile(dh_file, &len);
496 dh_file);
/external/wpa_supplicant_8/src/tls/
H A Dtlsv1_cred.h37 int tlsv1_set_dhparams(struct tlsv1_credentials *cred, const char *dh_file,
H A Dtlsv1_cred.c477 * @dh_file: File or reference name for the DH params in PEM or DER format
482 int tlsv1_set_dhparams(struct tlsv1_credentials *cred, const char *dh_file, argument
488 if (dh_file) {
493 buf = (u8 *) os_readfile(dh_file, &len);
496 dh_file);
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dtlsv1_cred.h37 int tlsv1_set_dhparams(struct tlsv1_credentials *cred, const char *dh_file,
H A Dtlsv1_cred.c477 * @dh_file: File or reference name for the DH params in PEM or DER format
482 int tlsv1_set_dhparams(struct tlsv1_credentials *cred, const char *dh_file, argument
488 if (dh_file) {
493 buf = (u8 *) os_readfile(dh_file, &len);
496 dh_file);
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_config.h163 * dh_file - File path to DH/DSA parameters file (in PEM format)
178 u8 *dh_file; member in struct:eap_peer_config
297 * This field is like dh_file, but used for phase 2 (inside
H A Deap_tls_common.c90 params->dh_file = (char *) config->dh_file;
112 params->dh_file = (char *) config->dh_file2;
164 eap_tls_check_blob(sm, &params->dh_file, &params->dh_blob,
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_config.h163 * dh_file - File path to DH/DSA parameters file (in PEM format)
178 u8 *dh_file; member in struct:eap_peer_config
297 * This field is like dh_file, but used for phase 2 (inside
H A Deap_tls_common.c90 params->dh_file = (char *) config->dh_file;
112 params->dh_file = (char *) config->dh_file2;
164 eap_tls_check_blob(sm, &params->dh_file, &params->dh_blob,
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_config.h163 * dh_file - File path to DH/DSA parameters file (in PEM format)
178 u8 *dh_file; member in struct:eap_peer_config
297 * This field is like dh_file, but used for phase 2 (inside
H A Deap_tls_common.c90 params->dh_file = (char *) config->dh_file;
112 params->dh_file = (char *) config->dh_file2;
164 eap_tls_check_blob(sm, &params->dh_file, &params->dh_blob,
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dauthsrv.c145 hapd->conf->private_key || hapd->conf->dh_file)) {
160 params.dh_file = hapd->conf->dh_file;
H A Dap_config.h304 char *dh_file; member in struct:hostapd_bss_config
/external/wpa_supplicant_8/src/ap/
H A Dauthsrv.c145 hapd->conf->private_key || hapd->conf->dh_file)) {
160 params.dh_file = hapd->conf->dh_file;
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dauthsrv.c145 hapd->conf->private_key || hapd->conf->dh_file)) {
160 params.dh_file = hapd->conf->dh_file;
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dtls_openssl.c2367 static int tls_connection_dh(struct tls_connection *conn, const char *dh_file) argument
2370 if (dh_file == NULL)
2373 "dh_file specified");
2380 if (dh_file == NULL)
2385 bio = BIO_new_file(dh_file, "r");
2388 dh_file, ERR_error_string(ERR_get_error(), NULL));
2397 " trying to parse as DSA params", dh_file,
2399 bio = BIO_new_file(dh_file, "r");
2406 "'%s': %s", dh_file,
2424 "'%s'", dh_file);
2441 tls_global_dh(SSL_CTX *ssl_ctx, const char *dh_file) argument
[all...]
H A Dtls_internal.c220 if (tlsv1_set_dhparams(cred, params->dh_file, params->dh_blob,
279 if (tlsv1_set_dhparams(cred, params->dh_file, params->dh_blob,
H A Dtls.h114 * @dh_file: File name for DH/DSA data in PEM format, or %NULL if not used
115 * @dh_blob: dh_file as inlined data or %NULL if not used
153 const char *dh_file; member in struct:tls_connection_params
/external/wpa_supplicant_8/src/crypto/
H A Dtls_openssl.c2367 static int tls_connection_dh(struct tls_connection *conn, const char *dh_file) argument
2370 if (dh_file == NULL)
2373 "dh_file specified");
2380 if (dh_file == NULL)
2385 bio = BIO_new_file(dh_file, "r");
2388 dh_file, ERR_error_string(ERR_get_error(), NULL));
2397 " trying to parse as DSA params", dh_file,
2399 bio = BIO_new_file(dh_file, "r");
2406 "'%s': %s", dh_file,
2424 "'%s'", dh_file);
2441 tls_global_dh(SSL_CTX *ssl_ctx, const char *dh_file) argument
[all...]
H A Dtls_internal.c220 if (tlsv1_set_dhparams(cred, params->dh_file, params->dh_blob,
279 if (tlsv1_set_dhparams(cred, params->dh_file, params->dh_blob,
H A Dtls.h114 * @dh_file: File name for DH/DSA data in PEM format, or %NULL if not used
115 * @dh_blob: dh_file as inlined data or %NULL if not used
153 const char *dh_file; member in struct:tls_connection_params
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dtls_openssl.c2367 static int tls_connection_dh(struct tls_connection *conn, const char *dh_file) argument
2370 if (dh_file == NULL)
2373 "dh_file specified");
2380 if (dh_file == NULL)
2385 bio = BIO_new_file(dh_file, "r");
2388 dh_file, ERR_error_string(ERR_get_error(), NULL));
2397 " trying to parse as DSA params", dh_file,
2399 bio = BIO_new_file(dh_file, "r");
2406 "'%s': %s", dh_file,
2424 "'%s'", dh_file);
2441 tls_global_dh(SSL_CTX *ssl_ctx, const char *dh_file) argument
[all...]
H A Dtls_internal.c220 if (tlsv1_set_dhparams(cred, params->dh_file, params->dh_blob,
279 if (tlsv1_set_dhparams(cred, params->dh_file, params->dh_blob,
H A Dtls.h114 * @dh_file: File name for DH/DSA data in PEM format, or %NULL if not used
115 * @dh_blob: dh_file as inlined data or %NULL if not used
153 const char *dh_file; member in struct:tls_connection_params

Completed in 253 milliseconds

12