Differences From Artifact [870e72f47c]:
- File tests/test_vectors/KDF/PBKDF2-SHA384.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: 3782) [annotate] [blame] [check-ins using]
To Artifact [4b8ba99f25]:
- File tests/test_vectors/KDF/PBKDF2-SHA384.test — part of check-in [8440f589be] at 2024-02-11 21:24:47 on branch crypto — Updated test cases for OpenSSL 3.0. Added load legacy provider for obsolete algorithms. (user: bohagan, size: 3921) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | + + | # Auto generated from "PBKDF2-SHA384.txt" lappend auto_path [file dirname [file dirname [file dirname [file dirname [file join [pwd] [info script]]]]]] package require tls package require tcltest tcltest::testConstraint PBKDF2 [expr {[lsearch -nocase [tls::kdfs] PBKDF2] > -1}] tcltest::testConstraint SHA384 [expr {[lsearch -nocase [tls::digests] SHA384] > -1}] catch {tls::provider legacy} tcltest::test KDF_PBKDF2-SHA384-1.1 {PBKDF2-SHA384} \ -constraints {PBKDF2 SHA384} \ -setup {} \ -body {binary encode hex [tls::pbkdf2 -digest SHA384 -password "password" -salt "salt" -iterations 1 -size 20]} \ -match exact -result c0e14f06e49e32d73f9f52ddf1d0c5c719160923 |
︙ |