简体   繁体   English

检查 avalara TLS 1.2 合规性

[英]Check avalara TLS 1.2 compliance

I need to check avalara TLS 1.2 compliance, But I didn't find any documentation我需要检查 avalara TLS 1.2 合规性,但我没有找到任何文档

Could someone let me know the procedure to check compliance有人可以告诉我检查合规性的程序吗

TLS is part of JRE security settings not related with hybris. TLS 是与 hybris 无关的 JRE 安全设置的一部分。 You can check your JRE security configuration.您可以检查您的 JRE 安全配置。 Up to date JRE distributions supporting TLS 1.2 and old versions already disabled.支持 TLS 1.2 的最新 JRE 发行版和已禁用的旧版本。

You can checkyour configuration in hac via groovy script.您可以通过 groovy 脚本检查 hac 中的配置。 For example my web page supporting TLS 1.2 and 1.3.例如我的 web 页面支持 TLS 1.2 和 1.3。

URL url = new URL("http://mkysoft.com/ip.php");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
InputStream is = connection.getInputStream();
return org.apache.commons.io.IOUtils.toString(is);

If you want to test other TLS/SSL/certificate/handshake options check https://badssl.com/ for alternative test endpoints.如果您想测试其他 TLS/SSL/certificate/handshake 选项,请检查https://badssl.com/以获取替代测试端点。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM