[PATCH 01/12] Print ciphersuites in wolfSSL
Juliusz Sosinowicz
juliusz at wolfssl.com
Wed Aug 2 02:28:06 PDT 2023
Hi,
is there a timeline when someone will be able to review this patchset?
Thanks.
Sincerely
Juliusz
On 08/03/2023 18:18, Juliusz Sosinowicz wrote:
> Signed-off-by: Juliusz Sosinowicz <juliusz at wolfssl.com>
> ---
> src/crypto/tls_wolfssl.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/src/crypto/tls_wolfssl.c b/src/crypto/tls_wolfssl.c
> index b4f1bbe7f..a02c92892 100644
> --- a/src/crypto/tls_wolfssl.c
> +++ b/src/crypto/tls_wolfssl.c
> @@ -284,6 +284,7 @@ void * tls_init(const struct tls_config *conf)
> ciphers = conf->openssl_ciphers;
> else
> ciphers = "ALL";
> + wpa_printf(MSG_DEBUG, "wolfSSL: cipher suites: %s", ciphers);
> if (wolfSSL_CTX_set_cipher_list(ssl_ctx, ciphers) != 1) {
> wpa_printf(MSG_ERROR,
> "wolfSSL: Failed to set cipher string '%s'",
> @@ -1323,6 +1324,7 @@ int tls_connection_set_params(void *tls_ctx, struct tls_connection *conn,
> return -1;
> }
>
> + wpa_printf(MSG_DEBUG, "wolfSSL: cipher suites: %s", params->openssl_ciphers);
> if (params->openssl_ciphers &&
> wolfSSL_set_cipher_list(conn->ssl, params->openssl_ciphers) != 1) {
> wpa_printf(MSG_INFO,
> @@ -1553,6 +1555,7 @@ int tls_global_set_params(void *tls_ctx,
> return -1;
> }
>
> + wpa_printf(MSG_DEBUG, "wolfSSL: cipher suites: %s", params->openssl_ciphers);
> if (params->openssl_ciphers &&
> wolfSSL_CTX_set_cipher_list(tls_ctx,
> params->openssl_ciphers) != 1) {
More information about the Hostap
mailing list