@@ -67,8 +67,7 @@ def read_impls():
6767
6868# Combined requirements of curl 7.81.0-1ubuntu1.15, and curl 8.5.0
6969# extracted by running with LD_DEBUG=all
70- CURL = set (
71- """
70+ CURL = set ("""
7271BIO_f_ssl
7372OPENSSL_init_ssl
7473SSL_alert_desc_string_long
@@ -133,13 +132,11 @@ def read_impls():
133132SSL_shutdown
134133SSL_write
135134TLS_client_method
136- """ .split ()
137- )
135+ """ .split ())
138136
139137# Combined requirements of nginx 1.18.0-6ubuntu14.4, and nginx 1.24.0,
140138# and fedora nginx 1.26.1-1.fc40. extracted by running with LD_DEBUG=all
141- NGINX = set (
142- """
139+ NGINX = set ("""
143140d2i_SSL_SESSION
144141i2d_SSL_SESSION
145142OPENSSL_init_ssl
@@ -258,12 +255,10 @@ def read_impls():
258255SSL_write
259256SSL_write_early_data
260257TLS_method
261- """ .split ()
262- )
258+ """ .split ())
263259
264260# Requirements of haproxy 2.8.5-1ubuntu3.3
265- HAPROXY = set (
266- """
261+ HAPROXY = set ("""
267262d2i_SSL_SESSION
268263i2d_SSL_SESSION
269264SSL_CIPHER_find
@@ -372,8 +367,7 @@ def read_impls():
372367SSL_write_early_data
373368TLS_client_method
374369TLS_server_method
375- """ .split ()
376- )
370+ """ .split ())
377371
378372print ("| Symbol | curl[^curl] | nginx[^nginx] | haproxy[^haproxy] | implemented? |" )
379373print ("|---|---|---|---|---|" )
@@ -394,8 +388,7 @@ def read_impls():
394388 + " |"
395389 )
396390
397- print (
398- """
391+ print ("""
399392[^stub]: symbol exists, but just returns an error.
400393[^deprecatedin_1_1_0]: deprecated in openssl 1.1.0
401394[^deprecatedin_3_0]: deprecated in openssl 3.0
@@ -418,5 +411,4 @@ def read_impls():
418411[^engine]: openssl ENGINE-specific
419412[^curl]: combined requirements of curl 7.81.0-1ubuntu1.15 (ubuntu 22.04), and curl 8.5.0 (ubuntu 24.04)
420413[^nginx]: combined requirements of nginx 1.18.0-6ubuntu14.4 (ubuntu 22.04), and nginx 1.24.0 (ubuntu 24.04), and fedora nginx 1.26.1-1.fc40
421- [^haproxy]: haproxy 2.8.5-1ubuntu3.3 (ubuntu 24.04)"""
422- )
414+ [^haproxy]: haproxy 2.8.5-1ubuntu3.3 (ubuntu 24.04)""" )
0 commit comments