We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e9e0d0 commit ad709e6Copy full SHA for ad709e6
tests/integrationv2/common.py
@@ -348,8 +348,9 @@ class Curves(object):
348
"""
349
X25519 = Curve("X25519", Protocols.TLS13)
350
P256 = Curve("P-256")
351
- # providers who negotiate SSLv3 may not not send the supported
352
- # groups extension so P-384 and P-521 cannot be negotiated
+ # Our only SSLv3 provider doesn't support extensions
+ # so there is no way to negotiate a curve other than the
353
+ # default P-256 in SSLv3.
354
P384 = Curve("P-384", Protocols.TLS10)
355
P521 = Curve("P-521", Protocols.TLS10)
356
SecP256r1Kyber768Draft00 = Curve("SecP256r1Kyber768Draft00")
0 commit comments