From: Andreas Beeker Date: Tue, 22 Feb 2022 20:09:31 +0000 (+0000) Subject: fix SSL->TLS and LOG typo X-Git-Tag: REL_5_2_1~16 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=63f2572c622ea694018ac5e437bc61252cc091ad;p=poi.git fix SSL->TLS and LOG typo git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898328 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/dsig/services/TimeStampSimpleHttpClient.java b/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/dsig/services/TimeStampSimpleHttpClient.java index 427bdff7bf..f112f48d98 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/dsig/services/TimeStampSimpleHttpClient.java +++ b/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/dsig/services/TimeStampSimpleHttpClient.java @@ -54,7 +54,7 @@ public class TimeStampSimpleHttpClient implements TimeStampHttpClient { protected static final String BASIC_AUTH = "Authorization"; protected static final String REDIRECT_LOCATION = "Location"; - private static final Logger LOG = LogManager.getLogger(TSPTimeStampService.class); + private static final Logger LOG = LogManager.getLogger(TimeStampSimpleHttpClient.class); // how large a timestamp response is expected to be // can be overwritten via IOUtils.setByteArrayMaxOverride() @@ -265,7 +265,7 @@ public class TimeStampSimpleHttpClient implements TimeStampHttpClient { HttpsURLConnection conns = (HttpsURLConnection)conn; try { - SSLContext sc = SSLContext.getInstance("SSL"); + SSLContext sc = SSLContext.getInstance("TLS"); sc.init(null, new TrustManager[]{new UnsafeTrustManager()}, RandomSingleton.getInstance()); conns.setSSLSocketFactory(sc.getSocketFactory()); conns.setHostnameVerifier((hostname, session) -> true);