Author: markt Date: Thu Feb 9 20:30:13 2017 New Revision: 1782384 URL: http://svn.apache.org/viewvc?rev=1782384&view=rev Log: Additional hack to address Gump failure until TLS 1.3 is final.
Modified: tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TestCipher.java Modified: tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TestCipher.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TestCipher.java?rev=1782384&r1=1782383&r2=1782384&view=diff ============================================================================== --- tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TestCipher.java (original) +++ tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TestCipher.java Thu Feb 9 20:30:13 2017 @@ -80,6 +80,15 @@ public class TestCipher { // TLS 1.3 is still i Set<String> availableCipherSuites = TesterOpenSSL.getOpenSSLCiphersAsSet("ALL:eNULL:aRSA"); + // TODO + // Temporary removal of the TLS1.3 ciphers until the spec is final or an + // appropriate option is added to the ciphers command + availableCipherSuites.remove("TLS13-AES-128-GCM-SHA256+TLSv1.3"); + availableCipherSuites.remove("TLS13-AES-128-CCM-8-SHA256+TLSv1.3"); + availableCipherSuites.remove("TLS13-AES-128-CCM-SHA256+TLSv1.3"); + availableCipherSuites.remove("TLS13-CHACHA20-POLY1305-SHA256+TLSv1.3"); + availableCipherSuites.remove("TLS13-AES-256-GCM-SHA384+TLSv1.3"); + Set<String> expectedCipherSuites = new HashSet<>(); for (Cipher cipher : Cipher.values()) { if (TesterOpenSSL.OPENSSL_UNIMPLEMENTED_CIPHERS.contains(cipher)) { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org