Skip to content
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

fix: Remove ciphers considered insecure in go 1.22. #340

Merged
merged 3 commits into from
Mar 8, 2024
Merged

Conversation

dtrejod
Copy link
Contributor

@dtrejod dtrejod commented Mar 7, 2024

Before this PR

We included the following ciphers in our set of default ciphers:

  • TLS_RSA_WITH_AES_256_GCM_SHA384
  • TLS_RSA_WITH_AES_256_CBC_SHA

After this PR

In Go 1.22 there ciphers were marked as insecure (commit). Trying to run a server with these ciphers can result in unknown cipher errors. Users can force use these ciphers via GODEBUG flags, but we should pre-emptively remove these ciphers as they are now considered insecure.

This PR updates the set of ciphers we use in Go to the current desirable set of cipher-suites.


This change is Reviewable

@dtrejod dtrejod merged commit 983b607 into master Mar 8, 2024
64 checks passed
@dtrejod dtrejod deleted the dt/rm-ciphers branch March 8, 2024 17:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants