Replace the explicit list of OpenSSL 3.x versions with a wildcard 3.*
entry since TLS 1.3 support is very unlikely to be removed in the future
versions.
Signed-off-by: Jouni Malinen <j@w1.fi>
def check_tls13_support(dev):
tls = dev.request("GET tls_library")
- ok = ['run=OpenSSL 1.1.1', 'run=OpenSSL 3.0', 'run=OpenSSL 3.1',
- 'run=OpenSSL 3.2', 'run=OpenSSL 3.3', 'wolfSSL']
+ ok = ['run=OpenSSL 1.1.1', 'run=OpenSSL 3.', 'wolfSSL']
for s in ok:
if s in tls:
return