You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HTTPConnectionFactory class creates an SSLContext object using 'SSL' algorithm. Hardened and FIPS compliant JVMs will not support the old 'SSL' syntax and requires to call 'TLS' to insure TLS is being used.
SSLContext.getInstance('SSL') -> Replace with SSLContext.getInstance('TLS')
The text was updated successfully, but these errors were encountered:
HTTPConnectionFactory class creates an SSLContext object using 'SSL' algorithm. Hardened and FIPS compliant JVMs will not support the old 'SSL' syntax and requires to call 'TLS' to insure TLS is being used.
SSLContext.getInstance('SSL') -> Replace with SSLContext.getInstance('TLS')
The text was updated successfully, but these errors were encountered: