Differences From Artifact [69a254de42]:
- File tests/test_vectors/Hash/MD2.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: 1617) [annotate] [blame] [check-ins using]
To Artifact [99bc7b516b]:
- File tests/test_vectors/Hash/MD2.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: 1658) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
42 43 44 45 46 47 48 | tcltest::test Hash_MD2-1.7 {MD2} \ -constraints MD2 \ -setup {set data "12345678901234567890123456789012345678901234567890123456789012345678901234567890"} \ -body {tls::digest -digest MD2 -data $data} \ -match exact -result d5976f79d83d3a0dc9806c3c66f3efd8 | > > > | 42 43 44 45 46 47 48 49 50 51 | tcltest::test Hash_MD2-1.7 {MD2} \ -constraints MD2 \ -setup {set data "12345678901234567890123456789012345678901234567890123456789012345678901234567890"} \ -body {tls::digest -digest MD2 -data $data} \ -match exact -result d5976f79d83d3a0dc9806c3c66f3efd8 # Cleanup ::tcltest::cleanupTests return |