summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-01-28 22:34:34 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-01-28 22:34:34 +0000
commit326d5340e6d7077a3eea7847434410a503deb98f (patch)
tree21d236fc4cdcf2de6a8f3ca104efa3d1df4774fb
parent02080c165ee28713caf5e74773093aaa19d39b3e (diff)
Use singleton already present.
-rw-r--r--jrt/src/com/yahoo/jrt/CryptoEngine.java6
-rw-r--r--security-utils/src/main/java/com/yahoo/security/tls/DefaultTlsContext.java4
2 files changed, 1 insertions, 9 deletions
diff --git a/jrt/src/com/yahoo/jrt/CryptoEngine.java b/jrt/src/com/yahoo/jrt/CryptoEngine.java
index 6d1955d7f66..318ee333fee 100644
--- a/jrt/src/com/yahoo/jrt/CryptoEngine.java
+++ b/jrt/src/com/yahoo/jrt/CryptoEngine.java
@@ -1,10 +1,7 @@
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jrt;
-
-import com.yahoo.security.tls.AuthorizationMode;
import com.yahoo.security.tls.MixedMode;
-import com.yahoo.security.tls.ConfigFileBasedTlsContext;
import com.yahoo.security.tls.TlsContext;
import com.yahoo.security.tls.TransportSecurityUtils;
@@ -24,8 +21,7 @@ public interface CryptoEngine extends AutoCloseable {
if (!TransportSecurityUtils.isTransportSecurityEnabled()) {
return new NullCryptoEngine();
}
- AuthorizationMode mode = TransportSecurityUtils.getInsecureAuthorizationMode();
- TlsContext tlsContext = new ConfigFileBasedTlsContext(TransportSecurityUtils.getConfigFile().get(), mode);
+ TlsContext tlsContext = TransportSecurityUtils.getSystemTlsContext().get();
TlsCryptoEngine tlsCryptoEngine = new TlsCryptoEngine(tlsContext);
MixedMode mixedMode = TransportSecurityUtils.getInsecureMixedMode();
switch (mixedMode) {
diff --git a/security-utils/src/main/java/com/yahoo/security/tls/DefaultTlsContext.java b/security-utils/src/main/java/com/yahoo/security/tls/DefaultTlsContext.java
index def3e49be4d..d2a42d21973 100644
--- a/security-utils/src/main/java/com/yahoo/security/tls/DefaultTlsContext.java
+++ b/security-utils/src/main/java/com/yahoo/security/tls/DefaultTlsContext.java
@@ -43,10 +43,6 @@ public class DefaultTlsContext implements TlsContext {
this(sslContext, TlsContext.ALLOWED_CIPHER_SUITES, peerAuthentication);
}
- public DefaultTlsContext(SSLContext sslContext) {
- this(sslContext, TlsContext.ALLOWED_CIPHER_SUITES, PeerAuthentication.NEED);
- }
-
DefaultTlsContext(SSLContext sslContext, Set<String> acceptedCiphers, PeerAuthentication peerAuthentication) {
this.sslContext = sslContext;
this.peerAuthentication = peerAuthentication;