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 2017/12/22 16:34:05 UTC

svn commit: r1819061 - /tomcat/trunk/java/org/apache/tomcat/util/net/openssl/ciphers/Cipher.java

Author: markt
Date: Fri Dec 22 16:34:04 2017
New Revision: 1819061

URL: http://svn.apache.org/viewvc?rev=1819061&view=rev
Log:
Correct OpenSSL cipher names

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

Modified: tomcat/trunk/java/org/apache/tomcat/util/net/openssl/ciphers/Cipher.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/openssl/ciphers/Cipher.java?rev=1819061&r1=1819060&r2=1819061&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/net/openssl/ciphers/Cipher.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/openssl/ciphers/Cipher.java Fri Dec 22 16:34:04 2017
@@ -3855,7 +3855,7 @@ public enum Cipher {
 
     TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256(
             0xC060,
-            "ECDHE-RSA-ARIA128-GCM-SHA256",
+            "ECDHE-ARIA128-GCM-SHA256",
             KeyExchange.ECDHe,
             Authentication.RSA,
             Encryption.ARIA128GCM,
@@ -3871,7 +3871,7 @@ public enum Cipher {
     ),
     TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384(
             0xC061,
-            "ECDHE-RSA-ARIA256-GCM-SHA384",
+            "ECDHE-ARIA256-GCM-SHA384",
             KeyExchange.ECDHe,
             Authentication.RSA,
             Encryption.ARIA256GCM,



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