X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/59371ea735c941334861aa5b8e1e9a06facf044f..a600ccb4a236549ed1a950d3fc783a1e2e9de2cb:/test/scripts/2100-OpenSSL/2149 diff --git a/test/scripts/2100-OpenSSL/2149 b/test/scripts/2100-OpenSSL/2149 index bba059158..18b43bd5e 100644 --- a/test/scripts/2100-OpenSSL/2149 +++ b/test/scripts/2100-OpenSSL/2149 @@ -1,11 +1,61 @@ -# TLS: DH ciphers for OpenSSL +# TLS: EC curves for OpenSSL +# +# This is only checking the acceptability of option settings, not their effect +# See packet captures for actual effects +# +# Baseline: tls_eccurve option not present exim -DSERVER=server -bd -oX PORT_D **** -exim userx@test.ex -Test message +exim -odf optnotpresent@test.ex **** -exim -qf +killdaemon +# +# Explicit tls_eccurve setting of "auto" +exim -DSERVER=server -DDATA=auto -bd -oX PORT_D +**** +exim -odf explicitauto@test.ex +**** +killdaemon +# +# prime256v1 +# Oddly, 3.0.5 packets show an EC-groups negotiation of C:x255519 S:secp256r1 C:secp256r1 S:secp256r1. +# Hoever, note that RFC 8446 (TLS1.3) does NOT include prime256v1 as one of the allowable +# supported groups (and it's not in the client "supported groups" extension, so what we see seems good. +exim -DSERVER=server -DDATA=prime256v1 -bd -oX PORT_D +**** +exim -odf prime256v1@test.ex +**** +killdaemon +# +# secp384r1 +# C:x25519 S:secp384r1 +exim -DSERVER=server -DDATA=secp384r1 -bd -oX PORT_D +**** +exim -odf secp384r1@test.ex **** killdaemon -exim -DSERVER=server -DNOTDAEMON -qf +# +# "bogus". Should fail to make connection. +exim -DSERVER=server -DDATA=bogus -bd -oX PORT_D **** +exim -odf user_fail@test.ex +**** +killdaemon +# +# Two-element list - will fail for pre- 1.1.1 OpenSSL +# - the Hello Retry Req goes out with the earliest one from the list which matches the client's Supported Groups +exim -DSERVER=server -DDATA=P-521:secp384r1 -bd -oX PORT_D +**** +exim -odf user_list2@test.ex +**** +killdaemon +# +# +# List with an "auto" element embedded, which should override. +exim -DSERVER=server '-DDATA= P-521 : P-384 : auto : P-256' -bd -oX PORT_D +**** +exim -odf user_list_auto@test.ex +**** +killdaemon +# +no_message_check