-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Add support for ciphersuites in tls config #3564
Conversation
Signed-off-by: Ashmita <[email protected]>
Codecov Report
@@ Coverage Diff @@
## main #3564 +/- ##
==========================================
- Coverage 96.49% 96.49% -0.01%
==========================================
Files 263 264 +1
Lines 15377 15402 +25
==========================================
+ Hits 14838 14862 +24
- Misses 456 457 +1
Partials 83 83
Continue to review full report at Codecov.
|
Signed-off-by: Ashmita152 <[email protected]>
👋 Hello Yuri Thank you for the feedbacks. I tried to resolve them. It is ready for review again. |
Signed-off-by: Ashmita152 <[email protected]>
Signed-off-by: Ashmita152 <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!
* Add support for ciphersuites in tls config Signed-off-by: Ashmita <[email protected]> * Feedbacks Signed-off-by: Ashmita152 <[email protected]> * Feedbacks Signed-off-by: Ashmita152 <[email protected]> * Feedbacks Signed-off-by: Ashmita152 <[email protected]> Signed-off-by: Albert Teoh <[email protected]>
Signed-off-by: Ashmita [email protected]
Which problem is this PR solving?
Part of #3019
Short description of the changes
In golang's tls package, there are two kinds of ciphers: secure and insecure, we need to support both hence we are creating a map of all ciphers (mapping cipherName to cipherID)
I will raise min tls version support as separate pr.