Index: README.txt
==================================================================
--- README.txt
+++ README.txt
@@ -6,11 +6,11 @@
 This package provides an extension which implements Secure Socket Layer (SSL)
 and Transport Layer Security (TLS) over Transmission Control Protocol (TCP)
 network communication channels. It utilizes either the OpenSSL or LibreSSL
 software library.
  
-Version 2.0 also provides a cryptography library providing TCL scripts access
+Version 1.9 also provides a cryptography library providing TCL scripts access
 to the crypto capabilities of the OpenSSL library.
 
 
 Description
 ===========
@@ -60,15 +60,13 @@
 
   --disable-tls1          disable TLS1 protocol
   --disable-tls1_1        disable TLS1.1 protocol
   --disable-tls1_2        disable TLS1.2 protocol
   --disable-tls1_3        disable TLS1.3 protocol
-  --enable-deterministic  enable deterministic DH parameters
   --enable-ssl-fastpath   enable using the underlying file descriptor for talking directly to the SSL library
   --enable-hardening      enable hardening attempts
   --enable-static-ssl     enable static linking to the SSL library
-  --with-builtin-dh-params-size=<bits>	specify the size of the built-in, precomputed, DH params
 
 If either TCL or OpenSSL are installed in non-standard locations, the following
 configure options are available. For all options, see ./configure --help.
 
   --with-tcl=<dir>			path to where tclCondig.sh file resides
@@ -106,11 +104,11 @@
 Original TLS Copyright (C) 1997-2000 Matt Newman <matt@novadigm.com>
 TLS 1.4.1    Copyright (C) 2000 Ajuba Solutions
 TLS 1.6      Copyright (C) 2008 ActiveState Software Inc.
 TLS 1.7      Copyright (C) 2016 Matt Newman, Ajuba Solutions, ActiveState
                                 Software Inc, Roy Keene <tcltls@rkeene.org>
-TLS 1.9-2.0  Copyright (C) 2023 Brian O'Hagan
+TLS 1.8      Copyright (C) 2023 Brian O'Hagan
 
 Acknowledgments
 ===============
 
 Non-exclusive credits for TLS are:

Index: doc/tls.html
==================================================================
--- doc/tls.html
+++ doc/tls.html
@@ -1,10 +1,10 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type"
-content="text/html; charset=iso-8859-1">
+content="text/html; charset=utf-8">
 <meta name="Copyright" content="1999 Matt Newman / 2004 Starfish Systems">
 <title>TLS (SSL) TCL Commands</title>
 <link rel="stylesheet" href="docs.css" type="text/css" media="all">
 </head>
 

Index: win/README.txt
==================================================================
--- win/README.txt
+++ win/README.txt
@@ -32,19 +32,27 @@
 (1c) Install NASM Assembler from https://www.nasm.us/
 
   https://www.nasm.us/pub/nasm/releasebuilds/2.16.01/win64/nasm-2.16.01-installer-x64.exe
   Install to: C:\Program Files\NASM
 
-(1d) Configure
+(1d) Configure Open SSL 1.1.1
 
   At Visual Studio x86 native prompt:
 
   set Path=%PATH%;C:\Program Files\NASM;C:\Strawberry\perl\bin
   perl ..\Configure VC-WIN64A no-shared no-filenames threads no-ssl2 no-ssl3 --api=1.1.0 --prefix="%SSLINSTALL%" --openssldir="%SSLCOMMON%" -DOPENSSL_NO_DEPRECATED
   # Not used options: no-asm no-zlib no-comp no-ui-console no-autoload-config
 
-(1e) Build OpenSSL
+(1e) Configure Open SSL 3.0+
+
+  At Visual Studio x86 native prompt:
+
+  set Path=%PATH%;C:\Program Files\NASM;C:\Strawberry\perl\bin
+  perl ..\Configure VC-WIN64A no-shared no-filenames threads no-ssl2 no-ssl3 --prefix="%SSLINSTALL%" --openssldir="%SSLCOMMON%"
+  # Not used options: no-asm no-zlib no-comp no-ui-console no-autoload-config
+
+(1f) Build OpenSSL
 
   nmake
   nmake test
   nmake install