Differences From Artifact [53d68345f4]:
- File tests/test_vectors/Hash/SHAKE128.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: 957) [annotate] [blame] [check-ins using]
To Artifact [358b30bc0f]:
- File tests/test_vectors/Hash/SHAKE128.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: 998) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
18 19 20 21 22 23 24 | tcltest::test Hash_SHAKE128-1.3 {SHAKE128} \ -constraints SHAKE128 \ -setup {set data [binary decode hex [string repeat a3 200]]} \ -body {tls::digest -digest SHAKE128 -data $data} \ -match exact -result 131ab8d2b594946b9c81333f9bb6e0ce75c3b93104fa3469d3917457385da037 | > > > | 18 19 20 21 22 23 24 25 26 27 | tcltest::test Hash_SHAKE128-1.3 {SHAKE128} \ -constraints SHAKE128 \ -setup {set data [binary decode hex [string repeat a3 200]]} \ -body {tls::digest -digest SHAKE128 -data $data} \ -match exact -result 131ab8d2b594946b9c81333f9bb6e0ce75c3b93104fa3469d3917457385da037 # Cleanup ::tcltest::cleanupTests return |