gpt4 book ai didi

java - 这段 Java 1.7 代码片段中的 TLS 版本是什么?

转载 作者:行者123 更新时间:2023-11-30 10:55:26 26 4
gpt4 key购买 nike

我将 JVM 参数作为 -Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2 传递。但是在代码中,我明确地将 SSL 上下文对象作为SSLContext sc = null;
sc = SSLContext.getInstance("TLS");
.

在这种情况下,TLS 版本是最高版本 (1.2),还是我需要明确获取 TLS 版本作为

sc = SSLContext.getInstance("TLSv1.2");

支持 TLS 1.2 版

最佳答案

可能不会。

According to the documentation ,此设置仅由 HttpsURLConnection 和 URl#openStream 使用。

https.protocols

Controls the protocol version used by Java clients which obtain https connections through use of the HttpsURLConnection class or via URL.openStream() operations.

如果您直接获取自己的 SSLContext,则可能不会引用该设置。

关于java - 这段 Java 1.7 代码片段中的 TLS 版本是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33339479/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com