Skip to content

Commit

Permalink
Implement feedback
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Pielage <[email protected]>
  • Loading branch information
Viii3 and Pandrex247 committed Feb 10, 2025
1 parent 9492638 commit 96775a5
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ public SSLImplementation get() {
}

sslImplementation = sslImplementationLocal;
this.setNeedClientAuth(isNeedClientAuth(ssl));
this.setWantClientAuth(isWantClientAuth(ssl));
setNeedClientAuth(isNeedClientAuth(ssl));
setWantClientAuth(isWantClientAuth(ssl));
clientMode = false;
sslContextConfiguration = new InternalSSLContextConfigurator();
}
Expand Down Expand Up @@ -187,7 +187,7 @@ protected SSLContext configureSSL() {
} else {
final String[] protocols = new String[tmpSSLArtifactsList.size()];
tmpSSLArtifactsList.toArray(protocols);
this.setEnabledProtocols(protocols);
setEnabledProtocols(protocols);
}
// String auth = ssl.getClientAuth();
// if (auth != null) {
Expand All @@ -211,14 +211,14 @@ protected SSLContext configureSSL() {
logEmptyWarning(ssl, "WEB0308: All SSL cipher suites disabled for network-listener(s) {0}."
+ " Using SSL implementation specific defaults");
} else {
this.setEnabledCipherSuites(ciphers);
setEnabledCipherSuites(ciphers);
}
}

if (LOGGER.isLoggable(Level.FINE)) {
LOGGER.log(Level.FINE, "Enabled secure protocols={0}"
+ "" + " ciphers={1}", new Object[]
{Arrays.toString(this.getEnabledProtocols()), Arrays.toString(this.getEnabledCipherSuites())});
{Arrays.toString(getEnabledProtocols()), Arrays.toString(getEnabledCipherSuites())});
}

return newSslContext;
Expand Down

0 comments on commit 96775a5

Please sign in to comment.