You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2017/10/16 18:23:04 UTC

kudu git commit: [security] fix typo on rpc_tls_ciphers

Repository: kudu
Updated Branches:
  refs/heads/master 24308aa1a -> 78843dd81


[security] fix typo on rpc_tls_ciphers

Fixed typo in the default list of TLS ciphers.  Due to the typo,
the prior revisions didn't use the following ciphers:

ECDHE-RSA-AES128-SHA256 TLSv1.2 Kx=ECDH Au=RSA Enc=AES(128)  Mac=SHA256
AES256-GCM-SHA384       TLSv1.2 Kx=RSA  Au=RSA Enc=AESGCM(256) Mac=AEAD

Change-Id: I8508bf9a9002e77cb38911837b9c3881acc01cf4
Reviewed-on: http://gerrit.cloudera.org:8080/8281
Tested-by: Kudu Jenkins
Reviewed-by: Dan Burkert <da...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/78843dd8
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/78843dd8
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/78843dd8

Branch: refs/heads/master
Commit: 78843dd81c628239a5fdd962208f949c63273384
Parents: 24308aa
Author: Alexey Serbin <as...@cloudera.com>
Authored: Mon Oct 16 09:41:19 2017 -0700
Committer: Alexey Serbin <as...@cloudera.com>
Committed: Mon Oct 16 18:21:49 2017 +0000

----------------------------------------------------------------------
 src/kudu/security/tls_context.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/78843dd8/src/kudu/security/tls_context.cc
----------------------------------------------------------------------
diff --git a/src/kudu/security/tls_context.cc b/src/kudu/security/tls_context.cc
index 3ab0131..1cea173 100644
--- a/src/kudu/security/tls_context.cc
+++ b/src/kudu/security/tls_context.cc
@@ -67,7 +67,7 @@ DEFINE_string(rpc_tls_ciphers,
               "ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:"
               "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:"
               "ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:"
-              "ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256"
+              "ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:"
               "AES256-GCM-SHA384:AES128-GCM-SHA256:"
               "AES256-SHA256:AES128-SHA256:"
               "AES256-SHA:AES128-SHA",