Differences From Artifact [019f917847]:
- File tests/common.tcl — part of check-in [b186ba1b7d] at 2023-11-14 03:53:04 on branch crypto — Split ciphers test file into digest and info test files. Added common.tcl file for common test constraints. Updated HMAC and CMAC test cases Added RFC 4231 HMAC example test cases. (user: bohagan, size: 609) [annotate] [blame] [check-ins using] [more...]
To Artifact [3f4b3346c0]:
- File tests/common.tcl — part of check-in [6fd974ebf0] at 2024-02-10 03:37:46 on branch trunk — Updated test cases for OpenSSL 3.0 (user: bohagan, size: 741) [annotate] [blame] [check-ins using] [more...]
︙ | |||
16 17 18 19 20 21 22 | 16 17 18 19 20 21 22 23 24 25 26 27 28 | + + + + + + | # OpenSSL version ::tcltest::testConstraint OpenSSL [string match "OpenSSL*" [::tls::version]] # Legacy OpenSSL v1.1.1 vs new v3.x scan [lindex [split [::tls::version]] 1] %f version ::tcltest::testConstraint new_api [expr {$version >= 3.0}] ::tcltest::testConstraint old_api [expr {$version < 3.0}] # Load legacy provider if {$version >= 3.0} { tls::provider legacy } |