123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- # -*- mode: perl; -*-
- # Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
- #
- # Licensed under the Apache License 2.0 (the "License"). You may not use
- # this file except in compliance with the License. You can obtain a copy
- # in the file LICENSE in the source distribution or at
- # https://www.openssl.org/source/license.html
- ## Test Renegotiation
- use strict;
- use warnings;
- package ssltests;
- use OpenSSL::Test::Utils;
- our @tests = (
- {
- name => "renegotiate-client-no-resume",
- server => {
- "Options" => "NoResumptionOnRenegotiation",
- "MaxProtocol" => "TLSv1.2"
- },
- client => {},
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateClient",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "Success"
- }
- },
- {
- name => "renegotiate-client-resume",
- server => {
- "MaxProtocol" => "TLSv1.2"
- },
- client => {},
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateClient",
- "ResumptionExpected" => "Yes",
- "ExpectedResult" => "Success"
- }
- },
- {
- name => "renegotiate-server-no-resume",
- server => {
- "Options" => "NoResumptionOnRenegotiation",
- "MaxProtocol" => "TLSv1.2"
- },
- client => {},
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateServer",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "Success"
- }
- },
- {
- name => "renegotiate-server-resume",
- server => {
- "MaxProtocol" => "TLSv1.2"
- },
- client => {},
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateServer",
- "ResumptionExpected" => "Yes",
- "ExpectedResult" => "Success"
- }
- },
- {
- name => "renegotiate-client-auth-require",
- server => {
- "Options" => "NoResumptionOnRenegotiation",
- "MaxProtocol" => "TLSv1.2",
- "VerifyCAFile" => test_pem("root-cert.pem"),
- "VerifyMode" => "Require",
- },
- client => {
- "Certificate" => test_pem("ee-client-chain.pem"),
- "PrivateKey" => test_pem("ee-key.pem"),
- },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateServer",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "Success"
- }
- },
- {
- name => "renegotiate-client-auth-once",
- server => {
- "Options" => "NoResumptionOnRenegotiation",
- "MaxProtocol" => "TLSv1.2",
- "VerifyCAFile" => test_pem("root-cert.pem"),
- "VerifyMode" => "Once",
- },
- client => {
- "Certificate" => test_pem("ee-client-chain.pem"),
- "PrivateKey" => test_pem("ee-key.pem"),
- },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateServer",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "Success"
- }
- },
- {
- # Just test that UnsafeLegacyServerConnect option
- # exists, it won't have any real effect here
- name => "renegotiate-client-legacy-connect",
- server => {
- "MaxProtocol" => "TLSv1.2"
- },
- client => {
- "Options" => "UnsafeLegacyServerConnect",
- },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateClient",
- "ResumptionExpected" => "Yes",
- "ExpectedResult" => "Success"
- }
- },
- );
- our @tests_tls1_2 = (
- {
- name => "renegotiate-aead-to-non-aead",
- server => {
- "Options" => "NoResumptionOnRenegotiation",
- },
- client => {
- "CipherString" => "AES128-GCM-SHA256",
- "MaxProtocol" => "TLSv1.2",
- extra => {
- "RenegotiateCiphers" => "AES128-SHA"
- }
- },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateClient",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "Success"
- }
- },
- {
- name => "renegotiate-non-aead-to-aead",
- server => {
- "Options" => "NoResumptionOnRenegotiation",
- },
- client => {
- "CipherString" => "AES128-SHA",
- "MaxProtocol" => "TLSv1.2",
- extra => {
- "RenegotiateCiphers" => "AES128-GCM-SHA256"
- }
- },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateClient",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "Success"
- }
- },
- {
- name => "renegotiate-non-aead-to-non-aead",
- server => {
- "Options" => "NoResumptionOnRenegotiation",
- },
- client => {
- "CipherString" => "AES128-SHA",
- "MaxProtocol" => "TLSv1.2",
- extra => {
- "RenegotiateCiphers" => "AES256-SHA"
- }
- },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateClient",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "Success"
- }
- },
- {
- name => "renegotiate-aead-to-aead",
- server => {
- "Options" => "NoResumptionOnRenegotiation",
- },
- client => {
- "CipherString" => "AES128-GCM-SHA256",
- "MaxProtocol" => "TLSv1.2",
- extra => {
- "RenegotiateCiphers" => "AES256-GCM-SHA384"
- }
- },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateClient",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "Success"
- }
- },
- {
- name => "no-renegotiation-server-by-client",
- server => {
- "Options" => "NoRenegotiation",
- "MaxProtocol" => "TLSv1.2"
- },
- client => { },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateClient",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "ClientFail"
- }
- },
- {
- name => "no-renegotiation-server-by-server",
- server => {
- "Options" => "NoRenegotiation",
- "MaxProtocol" => "TLSv1.2"
- },
- client => { },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateServer",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "ServerFail"
- }
- },
- {
- name => "no-renegotiation-client-by-server",
- server => {
- "MaxProtocol" => "TLSv1.2"
- },
- client => {
- "Options" => "NoRenegotiation",
- },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateServer",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "ServerFail"
- }
- },
- {
- name => "no-renegotiation-client-by-client",
- server => {
- "MaxProtocol" => "TLSv1.2"
- },
- client => {
- "Options" => "NoRenegotiation",
- },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateClient",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "ClientFail"
- }
- },
- {
- name => "no-extms-on-renegotiation",
- server => {
- "MaxProtocol" => "TLSv1.2"
- },
- client => {
- "MaxProtocol" => "TLSv1.2",
- extra => {
- "RenegotiateNoExtms" => "Yes"
- }
- },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateClient",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "ServerFail"
- }
- },
- {
- name => "allow-client-renegotiation",
- server => {
- "MaxProtocol" => "TLSv1.2",
- },
- client => {
- "MaxProtocol" => "TLSv1.2"
- },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateClient",
- "ResumptionExpected" => "Yes",
- "ExpectedResult" => "Success"
- }
- },
- {
- name => "no-client-renegotiation",
- server => {
- "MaxProtocol" => "TLSv1.2",
- "Options" => "-ClientRenegotiation"
- },
- client => {
- "MaxProtocol" => "TLSv1.2",
- },
- test => {
- "Method" => "TLS",
- "HandshakeMode" => "RenegotiateClient",
- "ResumptionExpected" => "No",
- "ExpectedResult" => "ClientFail",
- "ExpectedServerAlert" => "NoRenegotiation"
- }
- }
- );
- push @tests, @tests_tls1_2 unless disabled("tls1_2");
|