Skip to content

Commit fd0db1f

Browse files
annevkpgjones
authored andcommitted
Use blocklist rather than blacklist
Closes #1207.
1 parent 939271f commit fd0db1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/fragments/client_https_setup_fragment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def get_http2_ssl_context():
4848

4949
# RFC 7540 Section 9.2.2: "deployments of HTTP/2 that use TLS 1.2 MUST
5050
# support TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256". In practice, the
51-
# blacklist defined in this section allows only the AES GCM and ChaCha20
51+
# blocklist defined in this section allows only the AES GCM and ChaCha20
5252
# cipher suites with ephemeral key negotiation.
5353
ctx.set_ciphers("ECDHE+AESGCM:ECDHE+CHACHA20:DHE+AESGCM:DHE+CHACHA20")
5454

examples/fragments/server_https_setup_fragment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def get_http2_ssl_context():
5151

5252
# RFC 7540 Section 9.2.2: "deployments of HTTP/2 that use TLS 1.2 MUST
5353
# support TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256". In practice, the
54-
# blacklist defined in this section allows only the AES GCM and ChaCha20
54+
# blocklist defined in this section allows only the AES GCM and ChaCha20
5555
# cipher suites with ephemeral key negotiation.
5656
ctx.set_ciphers("ECDHE+AESGCM:ECDHE+CHACHA20:DHE+AESGCM:DHE+CHACHA20")
5757

0 commit comments

Comments
 (0)