Differences From Artifact [8e818cab70]:
- File tests/test_vectors/Hash/BLAKE2b512.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: 2896) [annotate] [blame] [check-ins using]
To Artifact [878053b68e]:
- File tests/test_vectors/Hash/BLAKE2b512.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: 3035) [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 "BLAKE2b512.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 BLAKE2b512 [expr {[lsearch -nocase [tls::digests] BLAKE2b512] > -1}] catch {tls::provider legacy} tcltest::test Hash_BLAKE2b512-1.1 {BLAKE2b512} \ -constraints BLAKE2b512 \ -setup {set data ""} \ -body {tls::digest -digest BLAKE2b512 -data $data} \ -match exact -result 786a02f742015903c6c6fd852552d272912f4740e15847618a86e217f71f5419d25e1031afee585313896444934eb04b903a685b1448b755d56f701afe9be2ce |
︙ |