-
Notifications
You must be signed in to change notification settings - Fork 57
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
Do not allow 64 bit ciphers for encryption without explicit option. #2266
Do not allow 64 bit ciphers for encryption without explicit option. #2266
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2266 +/- ##
==========================================
+ Coverage 84.80% 84.81% +0.01%
==========================================
Files 116 116
Lines 23280 23346 +66
==========================================
+ Hits 19743 19802 +59
- Misses 3537 3544 +7 ☔ View full report in Codecov by Sentry. |
32242b1
to
8eaebd4
Compare
b469fa4
to
4c9fee3
Compare
@desvxx linter failed. |
480d3d7
to
135db4a
Compare
135db4a
to
0c01729
Compare
0c01729
to
68f103b
Compare
src/lib/sec_profile.cpp
Outdated
@@ -196,6 +196,13 @@ SecurityContext::SecurityContext() : time_(0), prov_state_(NULL), rng(RNG::Type: | |||
SecurityAction::VerifyKey}); | |||
/* Mark MD5 insecure since 2012-01-01 */ | |||
profile.add_rule({FeatureType::Hash, PGP_HASH_MD5, SecurityLevel::Insecure, 1325376000}); | |||
/* Mark CAST5, 3DES, IDEA, BLOWFISH insecure since 2024-10-01*/ // TODO: tbd |
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.
And also we need to decide what date we want here.
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.
@desvxx As there is no reason to use cut-off date much older than release, and no sense to make it in future, let's use the one you typed in, just please remove the TODO item.
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.
LGTM, thanks!
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.
LGTM
68f103b
to
3867501
Compare
fixes #1598