Overview
Comment: | Fix ciphers.test testcases for OpenSSL 3.0. Remove files no longer needed |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | nijtmans |
Files: | files | file ages | folders |
SHA3-256: |
b8d46467952515e52672ec05cfbcc726 |
User & Date: | jan.nijtmans on 2024-02-23 10:19:26 |
Original Comment: | Fix ciphers.test testcases for OpenSSL 3.0 |
Other Links: | branch diff | manifest | tags |
Context
2024-02-23
| ||
11:00 | Move tls.htm -> doc/tls.html. Start conversion to HTML5 check-in: f4edd2b33b user: jan.nijtmans tags: nijtmans | |
10:26 | Merge trunk check-in: e6d7dec8c0 user: jan.nijtmans tags: bohagan | |
10:19 | Fix ciphers.test testcases for OpenSSL 3.0. Remove files no longer needed check-in: b8d4646795 user: jan.nijtmans tags: nijtmans | |
09:13 | Code formatting. TlsCloseProc is no longer needed in Tcl 9. check-in: 2382e3457d user: jan.nijtmans tags: nijtmans | |
Changes
Deleted HEADER version [b4ecd86142].
Deleted autogen.sh version [825e8c0a23].
Deleted build/makearch.info version [b62f6e2f07].
Deleted build/post.sh version [cb645c3205].
Deleted build/pre.sh version [a8f310fb41].
Deleted tcltls.syms.in version [f4a8c433c1].
Deleted tcltls.vers version [f9f493f912].
Modified tests/ciphers.test from [9bef3a5541] to [dd6b847004].
︙ | |||
43 44 45 46 47 48 49 | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | + + + - - - + + + + - - - + + - - + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + + + + + + + | EXP-EDH-DSS-DES-CBC-SHA EXP-DES-CBC-SHA EXP-RC2-CBC-MD5 EXP-RC4-MD5 } set ::EXPECTEDCIPHERS(openssl) { ECDHE-RSA-AES256-SHA DHE-PSK-AES256-CCM DHE-PSK-AES128-GCM-SHA256 |
︙ | |||
130 131 132 133 134 135 136 | 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | - + - - - - + - + | test ciphers-1.2 {Tls::ciphers for tls1} {rsabsafe} { # This will fail if you compiled against OpenSSL. # Change the constraint setting above. listcompare $::EXPECTEDCIPHERS(rsabsafe) [tls::ciphers tls1] } {} |
︙ |