-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect setting of ciphersuites for TLSv1.3 #4610
Comments
You are right @afshinpir the point is that probably we need a new cipherList_TLS1.3 params because the two configuration are completely different. The default value for 1.3 is |
I understand from the commit that you replace SSL_CTX_set_cipher_list with SSL_CTX_set_ciphersuites
But if I'm not wrong, from Openssl documentation I think that I think we need both function, even because cipher for 1.2 and 1.3 are different, Am I wrong? |
@micheleselea, does it work properly? |
I think this implementation is wrong. |
Hi all,
In OpenSSL version of NetSSL, you are using
SSL_CTX_set_cipher_list
method to set cipher list:poco/NetSSL_OpenSSL/src/Context.cpp
Line 192 in 1edabc1
But the point is that this method only affects TLSv1.2 and below, and for TLSv1.3 you need to use
SSL_CTX_set_ciphersuites()
method based on OpenSSL documentation here: https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set_cipher_list.htmlThe text was updated successfully, but these errors were encountered: