Differences From Artifact [eb35578938]:
- File tests/test_vectors/Hash/RIPEMD320.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: 2974) [annotate] [blame] [check-ins using]
To Artifact [fe9e7cfcb5]:
- File tests/test_vectors/Hash/RIPEMD320.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: 3015) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
60 61 62 63 64 65 66 | tcltest::test Hash_RIPEMD320-1.10 {RIPEMD320} \ -constraints RIPEMD320 \ -setup {set data "The quick brown fox jumps over the lazy dog"} \ -body {tls::digest -digest RIPEMD320 -data $data} \ -match exact -result e7660e67549435c62141e51c9ab1dcc3b1ee9f65c0b3e561ae8f58c5dba3d21997781cd1cc6fbc34 | > > > | 60 61 62 63 64 65 66 67 68 69 | tcltest::test Hash_RIPEMD320-1.10 {RIPEMD320} \ -constraints RIPEMD320 \ -setup {set data "The quick brown fox jumps over the lazy dog"} \ -body {tls::digest -digest RIPEMD320 -data $data} \ -match exact -result e7660e67549435c62141e51c9ab1dcc3b1ee9f65c0b3e561ae8f58c5dba3d21997781cd1cc6fbc34 # Cleanup ::tcltest::cleanupTests return |