Differences From Artifact [6534eaf139]:
- File tests/test_vectors/Hash/SHA1ShortMsg.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: 18666) [annotate] [blame] [check-ins using]
To Artifact [79a03d8d0f]:
- File tests/test_vectors/Hash/SHA1ShortMsg.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: 18707) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
390 391 392 393 394 395 396 | tcltest::test Hash_SHA1-2.65 {SHA1ShortMsg} \ -constraints SHA1 \ -setup {set data [binary decode hex 45927e32ddf801caf35e18e7b5078b7f5435278212ec6bb99df884f49b327c6486feae46ba187dc1cc9145121e1492e6b06e9007394dc33b7748f86ac3207cfe]} \ -body {tls::digest -digest SHA1 -data $data} \ -match exact -result a70cfbfe7563dd0e665c7c6715a96a8d756950c0 | > > > | 390 391 392 393 394 395 396 397 398 399 | tcltest::test Hash_SHA1-2.65 {SHA1ShortMsg} \ -constraints SHA1 \ -setup {set data [binary decode hex 45927e32ddf801caf35e18e7b5078b7f5435278212ec6bb99df884f49b327c6486feae46ba187dc1cc9145121e1492e6b06e9007394dc33b7748f86ac3207cfe]} \ -body {tls::digest -digest SHA1 -data $data} \ -match exact -result a70cfbfe7563dd0e665c7c6715a96a8d756950c0 # Cleanup ::tcltest::cleanupTests return |