Differences From Artifact [785114d672]:
- File tests/test_vectors/Hash/SHA224ShortMsg.test — part of check-in [25db067636] at 2023-12-19 05:53:21 on branch crypto — Added test vectors files for hash functions. Added test files and make script to generate TCL test cases from test vector files. These files come from NIST, IETC, etc. documents, examples, etc. (user: bohagan, size: 20232) [annotate] [blame] [check-ins using]
To Artifact [e931511d8b]:
- File tests/test_vectors/Hash/SHA224ShortMsg.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: 20273) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
390 391 392 393 394 395 396 | tcltest::test Hash_SHA224-2.65 {SHA224ShortMsg} \ -constraints SHA224 \ -setup {set data [binary decode hex a3310ba064be2e14ad32276e18cd0310c933a6e650c3c754d0243c6c61207865b4b65248f66a08edf6e0832689a9dc3a2e5d2095eeea50bd862bac88c8bd318d]} \ -body {tls::digest -digest SHA224 -data $data} \ -match exact -result b2a5586d9cbf0baa999157b4af06d88ae08d7c9faab4bc1a96829d65 | > > > | 390 391 392 393 394 395 396 397 398 399 | tcltest::test Hash_SHA224-2.65 {SHA224ShortMsg} \ -constraints SHA224 \ -setup {set data [binary decode hex a3310ba064be2e14ad32276e18cd0310c933a6e650c3c754d0243c6c61207865b4b65248f66a08edf6e0832689a9dc3a2e5d2095eeea50bd862bac88c8bd318d]} \ -body {tls::digest -digest SHA224 -data $data} \ -match exact -result b2a5586d9cbf0baa999157b4af06d88ae08d7c9faab4bc1a96829d65 # Cleanup ::tcltest::cleanupTests return |