mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-03-20 19:21:09 +01:00
Relax the dependencies of the tests about handshake message defragmentation/reassembly on server side. TLS 1.3 does not need to be enable anymore for this to work for TLS 1.2 handshake messages. Signed-off-by: Ronald Cron <ronald.cron@arm.com>
15 lines
366 B
Python
Executable File
15 lines
366 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Generate miscellaneous TLS test cases relating to the handshake.
|
|
"""
|
|
|
|
# Copyright The Mbed TLS Contributors
|
|
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
import framework_scripts_path # pylint: disable=unused-import
|
|
|
|
from mbedtls_framework import tls_handshake_tests
|
|
|
|
if __name__ == '__main__':
|
|
tls_handshake_tests.main()
|