Differences From Artifact [d9c580556e]:
- File tests/test_vectors/Hash/SHA512-224.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: 1313) [annotate] [blame] [check-ins using]
To Artifact [8ff47a0a0e]:
- File tests/test_vectors/Hash/SHA512-224.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: 1452) [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 "SHA512-224.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 SHA512_224 [expr {[lsearch -nocase [tls::digests] SHA512-224] > -1}] catch {tls::provider legacy} tcltest::test Hash_SHA512-224-1.1 {SHA512-224} \ -constraints SHA512_224 \ -setup {set data ""} \ -body {tls::digest -digest SHA512-224 -data $data} \ -match exact -result 6ed0dd02806fa89e25de060c19d3ac86cabb87d6a0ddd05c333b84f4 |
︙ |