masaori335 commented on code in PR #13428:
URL: https://github.com/apache/trafficserver/pull/13428#discussion_r3693967281
##########
src/iocore/net/SSLUtils.cc:
##########
@@ -369,6 +371,53 @@ ssl_next_protos_advertised_callback(SSL *ssl, const
unsigned char **out, unsigne
return SSL_TLSEXT_ERR_NOACK;
}
+static bool
+is_http2_prohibited_cipher(const SSL_CIPHER *cipher)
+{
+ struct CipherRange {
+ uint16_t first;
+ uint16_t last;
+ };
+
+ // RFC 9113 Appendix A lists 276 prohibited TLS 1.2 cipher suites. The IANA
+ // identifiers for those suites form these 24 contiguous ranges.
+ static constexpr CipherRange prohibited_ranges[] = {
Review Comment:
I checked with IANA registration.
https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-4
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]