Index: generic/tls.c
==================================================================
--- generic/tls.c
+++ generic/tls.c
@@ -1,20 +1,21 @@
 /*
+ * TLS Channel - This extension provides a encrypted communication channel
+ * using the TLS or SSL protocols. It can be layered on top of any
+ * bi-directional Tcl_Channel.
+ *
+ * This was initially built (almost) from scratch based upon observation of
+ * OpenSSL 0.9.2B.
+ *
  * Copyright (C) 1997-1999 Matt Newman <matt@novadigm.com>
  * some modifications:
  *	Copyright (C) 2000 Ajuba Solutions
  *	Copyright (C) 2002 ActiveState Corporation
  *	Copyright (C) 2004 Starfish Systems
  *	Copyright (C) 2023 Brian O'Hagan
  *
- * TLS (aka SSL) Channel - can be layered on any bi-directional
- * Tcl_Channel (Note: Requires Trf Core Patch)
- *
- * This was built (almost) from scratch based upon observation of
- * OpenSSL 0.9.2B
- *
- * Addition credit is due for Andreas Kupries (a.kupries@westend.com), for
+ * Additional credit is due for Andreas Kupries (a.kupries@westend.com), for
  * providing the Tcl_ReplaceChannel mechanism and working closely with me
  * to enhance it to support full fileevent semantics.
  *
  * Also work done by the follow people provided the impetus to do this "right":
  *	tclSSL (Colin McCormack, Shared Technology)

Index: generic/tls.h
==================================================================
--- generic/tls.h
+++ generic/tls.h
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 1997-2000 Matt Newman <matt@novadigm.com>
- *
- * TLS (aka SSL) Channel - can be layered on any bi-directional
- * Tcl_Channel (Note: Requires Trf Core Patch)
+ * TLS Channel - This extension provides a encrypted communication channel
+ * using the TLS or SSL protocols. It can be layered on top of any
+ * bi-directional Tcl_Channel.
  *
- * This was built from scratch based upon observation of OpenSSL 0.9.2B
+ * Copyright (C) 1997-2000 Matt Newman <matt@novadigm.com>
  *
  * Addition credit is due for Andreas Kupries (a.kupries@westend.com), for
  * providing the Tcl_ReplaceChannel mechanism and working closely with me
  * to enhance it to support full fileevent semantics.
  *

Index: generic/tlsBIO.c
==================================================================
--- generic/tlsBIO.c
+++ generic/tlsBIO.c
@@ -1,8 +1,8 @@
 /*
- * Provides Custom BIO layer to interface OpenSSL with TCL. These
- * functions directly interface between the IO channel and BIO buffers.
+ * Provides Custom BIO layer to interface OpenSSL with TCL. These functions
+ * directly interface between the TCL IO channel and BIO buffers.
  *
  * Copyright (C) 1997-2000 Matt Newman <matt@novadigm.com>
  * Copyright (C) 2024 Brian O'Hagan
  *
  */

Index: generic/tlsIO.c
==================================================================
--- generic/tlsIO.c
+++ generic/tlsIO.c
@@ -4,16 +4,11 @@
  *
  * Copyright (C) 1997-2000 Matt Newman <matt@novadigm.com>
  * Copyright (C) 2000 Ajuba Solutions
  * Copyright (C) 2024 Brian O'Hagan
  *
- * TLS (aka SSL) Channel - can be layered on any bi-directional
- * Tcl_Channel (Note: Requires Trf Core Patch)
- *
- * This was built from scratch based upon observation of OpenSSL 0.9.2B
- *
- * Addition credit is due for Andreas Kupries (a.kupries@westend.com), for
+ * Additional credit is due for Andreas Kupries (a.kupries@westend.com), for
  * providing the Tcl_ReplaceChannel mechanism and working closely with me
  * to enhance it to support full fileevent semantics.
  *
  * Also work done by the follow people provided the impetus to do this "right":
  *    tclSSL (Colin McCormack, Shared Technology)

Index: generic/tlsInt.h
==================================================================
--- generic/tlsInt.h
+++ generic/tlsInt.h
@@ -1,20 +1,20 @@
 /*
- *----------------------------------------------------------------------
+ * Macro and structure definitions for TLS extension
+ *
  * Copyright (C) 1997-2000 Matt Newman <matt@novadigm.com>
  *
- *	Macro and structure definitions
- *
- * Addition credit is due for Andreas Kupries (a.kupries@westend.com), for
+ * Additional credit is due for Andreas Kupries (a.kupries@westend.com), for
  * providing the Tcl_ReplaceChannel mechanism and working closely with me
  * to enhance it to support full fileevent semantics.
  *
  * Also work done by the follow people provided the impetus to do this "right":-
  *	tclSSL (Colin McCormack, Shared Technology)
  *	SSLtcl (Peter Antman)
- *----------------------------------------------------------------------
+ *
  */
+
 #ifndef _TLSINT_H
 #define _TLSINT_H
 
 /* Platform unique definitions */
 #if ((defined(_WIN32)) || (defined(__MINGW32__)) || (defined(__MINGW64__)))

Index: generic/tlsX509.c
==================================================================
--- generic/tlsX509.c
+++ generic/tlsX509.c
@@ -1,7 +1,7 @@
 /*
- * Parse X.509 certificate and return contents as a TCL key-value list.
+ * Parse X.509 certificates and return contents as a TCL key-value list.
  *
  * Copyright (C) 1997-2000 Sensus Consulting Ltd.
  * Matt Newman <matt@sensus.org>
  * Copyright (C) 2023 Brian O'Hagan
  */

Index: library/tls.tcl
==================================================================
--- library/tls.tcl
+++ library/tls.tcl
@@ -1,5 +1,7 @@
+#
+# Support functions for the TLS extension
 #
 # Copyright (C) 1997-2000 Matt Newman <matt@novadigm.com>
 #
 namespace eval tls {
     variable logcmd tclLog

Index: tests/all.tcl
==================================================================
--- tests/all.tcl
+++ tests/all.tcl
@@ -5,11 +5,10 @@
 # in this directory.
 #
 # Copyright (c) 1998-2000 by Ajuba Solutions.
 # All rights reserved.
 #
-# RCS: @(#) $Id: all.tcl,v 1.5 2000/08/15 18:45:01 hobbs Exp $
 
 set path [file normalize [file dirname [file join [pwd] [info script]]]]
 #set auto_path [linsert $auto_path 0 [file normalize [file join [file dirname [info script]] ..]]]
 set auto_path [linsert $auto_path 0 [file dirname $path] [file normalize [pwd]]]
 

Index: tests/remote.tcl
==================================================================
--- tests/remote.tcl
+++ tests/remote.tcl
@@ -1,6 +1,7 @@
 #!/usr/bin/env tclsh
+#
 # This file contains Tcl code to implement a remote server that can be
 # used during testing of Tcl socket code. This server is used by some
 # of the tests in socket.test.
 #
 # Source this file in the remote server you are using to test Tcl against.
@@ -8,11 +9,10 @@
 # Copyright (c) 1995-1996 Sun Microsystems, Inc.
 #
 # See the file "license.terms" for information on usage and redistribution
 # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 #
-# RCS: @(#) $Id: remote.tcl,v 1.6 2004/02/11 22:41:25 razzell Exp $
 
 # load tls package
 package require tls
 
 # Initialize message delimitor

Index: tests/tlsIO.test
==================================================================
--- tests/tlsIO.test
+++ tests/tlsIO.test
@@ -8,11 +8,10 @@
 # Copyright (c) 1998-2000 Ajuba Solutions.
 #
 # See the file "license.terms" for information on usage and redistribution
 # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 #
-# RCS: @(#) $Id: tlsIO.test,v 1.24 2015/06/06 09:07:08 apnadkarni Exp $
 
 # Running socket tests with a remote server:
 # ------------------------------------------
 #
 # Some tests in socket.test depend on the existence of a remote server to