summaryrefslogtreecommitdiffstats
path: root/base/util
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2017-03-19 18:44:06 +0100
committerEndi S. Dewata <edewata@redhat.com>2017-03-19 20:44:08 +0100
commita168db3f36584a6a576daa91c993d18c134835fe (patch)
tree95ea64a84cec7bd1341d932b1f108b4d59bc5a7b /base/util
parent31683301b69fda23893c80af7c34c42a75e1b906 (diff)
downloadpki-a168db3f36584a6a576daa91c993d18c134835fe.tar.gz
pki-a168db3f36584a6a576daa91c993d18c134835fe.tar.xz
pki-a168db3f36584a6a576daa91c993d18c134835fe.zip
Renamed CryptoUtil.setClientCiphers().
The setClientCiphers() in CryptoUtil has been renamed to setDefaultSSLCiphers() for clarity.
Diffstat (limited to 'base/util')
-rw-r--r--base/util/src/com/netscape/cmsutil/crypto/CryptoUtil.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/util/src/com/netscape/cmsutil/crypto/CryptoUtil.java b/base/util/src/com/netscape/cmsutil/crypto/CryptoUtil.java
index fccda69e4..17d314a01 100644
--- a/base/util/src/com/netscape/cmsutil/crypto/CryptoUtil.java
+++ b/base/util/src/com/netscape/cmsutil/crypto/CryptoUtil.java
@@ -932,7 +932,7 @@ public class CryptoUtil {
if (list == null) {
// use default
- setClientCiphers();
+ setDefaultSSLCiphers();
return;
}
@@ -950,7 +950,7 @@ public class CryptoUtil {
}
}
- public static void setClientCiphers() throws SocketException {
+ public static void setDefaultSSLCiphers() throws SocketException {
int ciphers[] = SSLSocket.getImplementedCipherSuites();
if (ciphers == null) return;