From 76f07e1fdafcda1bcf1c178b2fc8d32b30d9b681 Mon Sep 17 00:00:00 2001 From: Bjørn Christian Seime Date: Tue, 2 Jul 2019 15:14:27 +0200 Subject: Remove ciphers from DefaultTlsContext public constructors --- jrt/tests/com/yahoo/jrt/CryptoUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jrt/tests/com') diff --git a/jrt/tests/com/yahoo/jrt/CryptoUtils.java b/jrt/tests/com/yahoo/jrt/CryptoUtils.java index ead9918a9c7..afe0412cf9e 100644 --- a/jrt/tests/com/yahoo/jrt/CryptoUtils.java +++ b/jrt/tests/com/yahoo/jrt/CryptoUtils.java @@ -48,7 +48,7 @@ class CryptoUtils { Field.CN, new HostGlobPattern("dummy")))))); static TlsContext createTestTlsContext() { - return new DefaultTlsContext(singletonList(certificate), keyPair.getPrivate(), singletonList(certificate), authorizedPeers, AuthorizationMode.ENFORCE, TlsContext.ALLOWED_CIPHER_SUITES); + return new DefaultTlsContext(singletonList(certificate), keyPair.getPrivate(), singletonList(certificate), authorizedPeers, AuthorizationMode.ENFORCE); } } -- cgit v1.2.3