You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2018/03/16 13:17:40 UTC

svn commit: r1826986 - /tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java

Author: markt
Date: Fri Mar 16 13:17:40 2018
New Revision: 1826986

URL: http://svn.apache.org/viewvc?rev=1826986&view=rev
Log:
Skip TLS v.13 ciphers in test for now

Modified:
    tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java

Modified: tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java?rev=1826986&r1=1826985&r2=1826986&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java (original)
+++ tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java Fri Mar 16 13:17:40 2018
@@ -105,6 +105,13 @@ public class TesterOpenSSL {
         unimplemented.add(Cipher.SSL2_IDEA_128_CBC_WITH_MD5);
         unimplemented.add(Cipher.SSL2_DES_192_EDE3_CBC_WITH_MD5);
 
+        // These are TLS v1.3 ciphers that the test suite doesn't yet handle
+        unimplemented.add(Cipher.TLS_AES_128_CCM_8_SHA256);
+        unimplemented.add(Cipher.TLS_AES_128_CCM_SHA256);
+        unimplemented.add(Cipher.TLS_AES_128_GCM_SHA256);
+        unimplemented.add(Cipher.TLS_AES_256_GCM_SHA384);
+        unimplemented.add(Cipher.TLS_CHACHA20_POLY1305_SHA256);
+
         if (VERSION < 10002) {
             // These were implemented in 1.0.2 so won't be available in any
             // earlier version



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org