2003-05-05 Andreas Kupries * * Released and tagged Tcllib 1.4 ======================== * 2003-04-11 Andreas Kupries * md5.tcl: * md5.man: * pkgIndex.tcl: Set version of the package to to 1.4.3. 2003-02-05 David N. Welton * md5.tcl (::md5::time): Used lindex instead of regexp to fish the number out of 'time' results. Not really a performance win here, but it's good style. 2003-01-06 Pat Thoyts * md5.tcl: Handle cases where Trf is available but the md5 command is not callable (like missing crypt.dll or libmd5crypt). 2002-03-25 Andreas Kupries * md5.man: Fixed formatting errors in the doctools manpage. 2002-02-07 Andreas Kupries * Version up to 1.4.2 to differentiate development from the version in the tcllib 1.2 release. * md5.tcl: Adding -- to hex/md5 commands to prevent misinterpretation of data if starting with -. 2001-10-16 Andreas Kupries * md5.n: * md5.tcl: * pkgIndex.tcl: Version up to 1.4.1 2001-08-20 Andreas Kupries * md5.test: Fixed broken error messages for 8.4. Using [tcltest::getErrorMessage] now to get the correct message for all versions of the core. Bug [440046] reported by Larry Virden. 2001-07-10 Andreas Kupries * md5.tcl: Frink 2.2 run, fixed dubious code. 2001-07-03 Miguel Sofer * md5.tcl: some more inlining, 10% faster 2001-06-21 Andreas Kupries * md5.tcl: Fixed dubious code reported by frink. 2001-06-19 Andreas Kupries * md5.n: Fixed nroff trouble. 2001-06-02 Miguel Sofer * md5.tcl: modified the pure Tcl code to run almost 5 times faster, by inlining (via regsub) function calls and using local variables instead of arrays. Bumped version number to 1.4 2001-04-25 Andreas Kupries * md5.test: Added tests of "md5::hmac". This allows us to test the two different implementations against each other. Note: The test file will now print which of the two variants (pure Tcl vs. Trf based) is active and under test. * md5.tcl: Added code to create a soft dependency on Trf. In other words, if Trf is present it will be loaded and used to speed up operations. Without Trf the original code in pure Tcl will be used. Note that the presence of Trf allows us to optimize the command "md5::hmac" too. 2001-04-24 Andreas Kupries * New module, 'md5'. The code Don Libes's md5pure, extended with a soft dependency on Trf to allow higher speed if the environment is right.