Differences From Artifact [b2908e18aa]:
- File tests/test_vectors/Hash/BLAKE2s256.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: 2343) [annotate] [blame] [check-ins using]
To Artifact [0d1c096bbe]:
- File tests/test_vectors/Hash/BLAKE2s256.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: 2384) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
48 49 50 51 52 53 54 | tcltest::test Hash_BLAKE2s256-1.8 {BLAKE2s256} \ -constraints BLAKE2s256 \ -setup {set data "The quick brown fox jumps over the lazy dog"} \ -body {tls::digest -digest BLAKE2s256 -data $data} \ -match exact -result 606beeec743ccbeff6cbcdf5d5302aa855c256c29b88c8ed331ea1a6bf3c8812 | > > > | 48 49 50 51 52 53 54 55 56 57 | tcltest::test Hash_BLAKE2s256-1.8 {BLAKE2s256} \ -constraints BLAKE2s256 \ -setup {set data "The quick brown fox jumps over the lazy dog"} \ -body {tls::digest -digest BLAKE2s256 -data $data} \ -match exact -result 606beeec743ccbeff6cbcdf5d5302aa855c256c29b88c8ed331ea1a6bf3c8812 # Cleanup ::tcltest::cleanupTests return |