简体   繁体   中英

Check avalara TLS 1.2 compliance

I need to check avalara TLS 1.2 compliance, But I didn't find any documentation

Could someone let me know the procedure to check compliance

TLS is part of JRE security settings not related with hybris. You can check your JRE security configuration. Up to date JRE distributions supporting TLS 1.2 and old versions already disabled.

You can checkyour configuration in hac via groovy script. For example my web page supporting TLS 1.2 and 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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

Related Question
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM