Differences From Artifact [d9301fcecf]:
- File tests/test_vectors/MAC/HMAC_RIPEMD128.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: 2968) [annotate] [blame] [check-ins using]
To Artifact [9121025e8e]:
- File tests/test_vectors/MAC/HMAC_RIPEMD128.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: 3107) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | + + | # Auto generated from "HMAC_RIPEMD128.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 HMAC [expr {[lsearch -nocase [tls::macs] HMAC] > -1}] tcltest::testConstraint RIPEMD128 [expr {[lsearch -nocase [tls::digests] RIPEMD128] > -1}] catch {tls::provider legacy} tcltest::test MAC_HMAC-RIPEMD128-1.1 {HMAC_RIPEMD128} \ -constraints {HMAC RIPEMD128 } \ -setup {} \ -body {string range [tls::hmac -hex -digest RIPEMD128 -key [binary decode hex 0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b] -data "Hi There"] 0 31} \ -match exact -result fbf61f9492aa4bbf81c172e84e0734db |
︙ |