Differences From Artifact [a24d68ab1b]:
- File tests/test_vectors/MAC/CMAC-AES-192-CBC.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: 1855) [annotate] [blame] [check-ins using]
To Artifact [c76103756c]:
- File tests/test_vectors/MAC/CMAC-AES-192-CBC.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: 1994) [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 "CMAC-AES-192-CBC.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 CMAC [expr {[lsearch -nocase [tls::macs] CMAC] > -1}] tcltest::testConstraint AES_192_CBC [expr {[lsearch -nocase [tls::ciphers] AES-192-CBC] > -1}] catch {tls::provider legacy} tcltest::test MAC_CMAC-AES-192-CBC-1.1 {CMAC-AES-192-CBC} \ -constraints {CMAC AES_192_CBC} \ -setup {} \ -body {string range [tls::cmac -hex -cipher AES-192-CBC -key [binary decode hex 8e73b0f7da0e6452c810f32b809079e562f8ead2522c6b7b] -data ""] 0 31} \ -match exact -result d17ddf46adaacde531cac483de7a9367 |
︙ |