-
Notifications
You must be signed in to change notification settings - Fork 107
Add TLS suites check #343
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
base: main
Are you sure you want to change the base?
Add TLS suites check #343
Conversation
public/service/securetls/secure.go
Outdated
| @@ -0,0 +1,115 @@ | |||
| // Copyright 2025 Redpanda Data, Inc. | |||
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.
I presume this (and other new files) should read 2026 now.
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.
I've change it to 2026
| Certificates: []tls.Certificate{cert}, | ||
| ClientAuth: t.tlsClientAuth, | ||
| } | ||
| config := securetls.NewSecureConfig(securetls.SecurityLevelLax) |
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.
Suggestion (non-blocking): Given the package is securetls, would a better function name of NewConfig be clearer as not to repeat the secure part?
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.
done
930fd88 to
b6ed920
Compare
No description provided.