Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching refs:dh_file

1782 static int tls_connection_dh(struct tls_connection *conn, const char *dh_file)
1785 if (dh_file == NULL)
1788 "dh_file specified");
1795 if (dh_file == NULL)
1800 bio = BIO_new_file(dh_file, "r");
1803 dh_file, ERR_error_string(ERR_get_error(), NULL));
1812 " trying to parse as DSA params", dh_file,
1814 bio = BIO_new_file(dh_file, "r");
1821 "'%s': %s", dh_file,
1839 "'%s'", dh_file);
1845 "%s", dh_file,
2319 if (tls_connection_dh(conn, params->dh_file)) {
2321 params->dh_file);