Differences From Artifact [ed87f72c47]:
- File tests/test_vectors/Hash/SHAKE256.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: 1149) [annotate] [blame] [check-ins using]
To Artifact [0cd1f0de19]:
- File tests/test_vectors/Hash/SHAKE256.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: 1190) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
18 19 20 21 22 23 24 | tcltest::test Hash_SHAKE256-1.3 {SHAKE256} \ -constraints SHAKE256 \ -setup {set data [binary decode hex [string repeat a3 200]]} \ -body {tls::digest -digest SHAKE256 -data $data} \ -match exact -result cd8a920ed141aa0407a22d59288652e9d9f1a7ee0c1e7c1ca699424da84a904d2d700caae7396ece96604440577da4f3aa22aeb8857f961c4cd8e06f0ae6610b | > > > | 18 19 20 21 22 23 24 25 26 27 | tcltest::test Hash_SHAKE256-1.3 {SHAKE256} \ -constraints SHAKE256 \ -setup {set data [binary decode hex [string repeat a3 200]]} \ -body {tls::digest -digest SHAKE256 -data $data} \ -match exact -result cd8a920ed141aa0407a22d59288652e9d9f1a7ee0c1e7c1ca699424da84a904d2d700caae7396ece96604440577da4f3aa22aeb8857f961c4cd8e06f0ae6610b # Cleanup ::tcltest::cleanupTests return |