wpa_supplicant: Allow OpenSSL cipherlist string to be configured

The new openssl_cipher configuration parameter can be used to select
which TLS cipher suites are enabled for TLS-based EAP methods when
OpenSSL is used as the TLS library. This parameter can be used both as a
global parameter to set the default for all network blocks and as a
network block parameter to override the default for each network
profile.

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2014-10-12 11:53:51 +03:00
parent f8995f8f1c
commit 07e2de3193
14 changed files with 64 additions and 2 deletions

View file

@ -167,6 +167,8 @@ static int eap_tls_params_from_conf(struct eap_sm *sm,
return -1;
}
params->openssl_ciphers = config->openssl_ciphers;
return 0;
}