From c1b7b6da16c2bb1d5c2d07ad7c818539f9f73767 Mon Sep 17 00:00:00 2001 From: DongHee Kang Date: Tue, 12 Jun 2018 00:53:25 -0700 Subject: [PATCH] Update SSL.md add ssl protocols sample --- SSL.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SSL.md b/SSL.md index 84d0ec4d..7ea4bebb 100644 --- a/SSL.md +++ b/SSL.md @@ -51,6 +51,10 @@ The purpose of this document is to provide a summary of how to configuration SSL configuration.setSslConfiguration(sslConfig); configuration.setUseSsl(true); +### Protocols + + sslConfig.addExcludeProtocols("TLSv1.0", "TLSv1.1", "SSLv2Hello"); + ### Validate certificates sslConfig.setValidateCerts(true);