comparison app/src/main/java/org/tn5250j/framework/transport/SSLInterface.java @ 509:2eb4fa13b9ef

update 5250 encryption to allow TLS1.3, remove old SSLv2 and SSLv3 methods
author Carl Byington <carl@five-ten-sg.com>
date Sun, 29 Jan 2023 10:25:21 -0700
parents d29cce60f393
children
comparison
equal deleted inserted replaced
508:d6c107dedb04 509:2eb4fa13b9ef
26 public interface SSLInterface { 26 public interface SSLInterface {
27 27
28 /** 28 /**
29 * Initialize the components required to create a new client socket 29 * Initialize the components required to create a new client socket
30 * when createSSLSocket is called. 30 * when createSSLSocket is called.
31 * @param sslType The ssl socket type (NONE, SSLv2, SSLv3, TLS) 31 * @param sslType The ssl socket type (NONE, TLSv1.2, TLSv1.3)
32 * @param homeDirectory location of the .tn5250j subdirectory containing 32 * @param homeDirectory location of the .tn5250j subdirectory containing
33 * the keystore 33 * the keystore
34 * @see org.tn5250j.framework.transport.SSLConstants 34 * @see org.tn5250j.framework.transport.SSLConstants
35 */ 35 */
36 public abstract void init(String sslType, String homeDirectory); 36 public abstract void init(String sslType, String homeDirectory);