You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nathanklick opened this issue
May 15, 2020
· 1 comment
Assignees
Labels
BugAn error that causes the feature to behave differently than what was expected based on design.ImpactPotentially impacts SDK, clients, docs and/or users.P1High priority issue, which must be completed in the milestone otherwise the release is at risk.
The configured gRPC cipher suites allow negotiation of TLS_RSA_WITH_AES_256_GCM_SHA384 which is not a CNSA compliant cipher suite. We should use TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 instead.
The text was updated successfully, but these errors were encountered:
nathanklick
added
P1
High priority issue, which must be completed in the milestone otherwise the release is at risk.
Bug
An error that causes the feature to behave differently than what was expected based on design.
labels
May 15, 2020
BugAn error that causes the feature to behave differently than what was expected based on design.ImpactPotentially impacts SDK, clients, docs and/or users.P1High priority issue, which must be completed in the milestone otherwise the release is at risk.
The configured gRPC cipher suites allow negotiation of
TLS_RSA_WITH_AES_256_GCM_SHA384
which is not a CNSA compliant cipher suite. We should useTLS_DHE_RSA_WITH_AES_256_GCM_SHA384
instead.NettyServerManager.java (lines 102-105):
Proposed Changes:
The text was updated successfully, but these errors were encountered: