diff 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
line wrap: on
line diff
--- a/app/src/main/java/org/tn5250j/framework/transport/SSLInterface.java	Thu Nov 17 10:56:48 2022 -0700
+++ b/app/src/main/java/org/tn5250j/framework/transport/SSLInterface.java	Sun Jan 29 10:25:21 2023 -0700
@@ -28,7 +28,7 @@
     /**
      * Initialize the components required to create a new client socket
      * when createSSLSocket is called.
-     * @param sslType  The ssl socket type (NONE, SSLv2, SSLv3, TLS)
+     * @param sslType  The ssl socket type (NONE, TLSv1.2, TLSv1.3)
      * @param homeDirectory  location of the .tn5250j subdirectory containing
      *                       the keystore
      * @see org.tn5250j.framework.transport.SSLConstants
@@ -43,4 +43,4 @@
      */
     public abstract Socket createSSLSocket(String destination, int port);
 
-}
\ No newline at end of file
+}