Differences From Artifact [7ee5f4974a]:
- File tests/test_vectors/Hash/SM3.test — part of check-in [feef0d0cef] at 2023-12-24 06:36:24 on branch crypto — Added MAC test vectors. Added all.tcl files to each test subdirectory so all tests run. Updated Hash and KDF test vectors to add missing cleanupTests. Corrected bug with using dash in constraints. Added constraints for ciphers, digests, and kdfs. (user: bohagan, size: 1832) [annotate] [blame] [check-ins using]
To Artifact [c919bfff86]:
- File tests/test_vectors/Hash/SM3.test — part of check-in [8440f589be] at 2024-02-11 21:24:47 on branch crypto — Updated test cases for OpenSSL 3.0. Added load legacy provider for obsolete algorithms. (user: bohagan, size: 1971) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | + + | # Auto generated from "SM3.txt" lappend auto_path [file dirname [file dirname [file dirname [file dirname [file join [pwd] [info script]]]]]] package require tls package require tcltest tcltest::testConstraint SM3 [expr {[lsearch -nocase [tls::digests] SM3] > -1}] catch {tls::provider legacy} tcltest::test Hash_SM3-1.1 {SM3} \ -constraints SM3 \ -setup {set data ""} \ -body {tls::digest -digest SM3 -data $data} \ -match exact -result 1ab21d8355cfa17f8e61194831e81a8f22bec8c728fefb747ed035eb5082aa2b |
︙ |