home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0600 / CCE_0679.ZIP / CCE_0679.PD / DES301 / VERSION < prev   
Text File  |  1993-10-08  |  7KB  |  186 lines

  1. Release apon comp.sources.misc
  2. Version 3.01 08/10/93
  3.     Added des_3cbc_encrypt()
  4.  
  5. Version 3.00 07/10/93
  6.     Fixed up documentation.
  7.     quad_cksum definitly compatable with MIT's now.
  8.  
  9. Version 2.30 24/08/93
  10.     Tripple DES now defaults to tripple cbc but can do tripple ecb
  11.      with the -b flag.
  12.     Fixed some MSDOS uuen/uudecoding problems, thanks to
  13.     Added prototypes.
  14.     
  15. Version 2.22 29/06/93
  16.     Fixed a bug in des_is_weak_key() which stopped it working :-(
  17.     thanks to engineering@MorningStar.Com.
  18.  
  19. Version 2.21 03/06/93
  20.     des(1) with no arguments gives quite a bit of help.
  21.     Added -c (generate ckecksum) flag to des(1).
  22.     Added -3 (tripple DES) flag to des(1).
  23.     Added cfb and ofb routines to the library.
  24.  
  25. Version 2.20 11/03/93
  26.     Added -u (uuencode) flag to des(1).
  27.     I have been playing with byte order in quad_cksum to make it
  28.      compatible with MIT's version.  All I can say is aviod this
  29.      function if possible since MIT's output is endian dependent.
  30.  
  31. Version 2.12 14/10/92
  32.     Added MSDOS specific macro in ecb_encrypt which gives a %70
  33.      speed up when the code is compiled with turbo C.
  34.  
  35. Version 2.11 12/10/92
  36.     Speedup in set_key (recoding of PC-1)
  37.      I now do it in 47 simple operations, down from 60.
  38.      Thanks to John Fletcher (john_fletcher@lccmail.ocf.llnl.gov)
  39.      for motivating me to look for a faster system :-)
  40.      The speedup is probably less that 1% but it is still 13
  41.      instructions less :-).
  42.  
  43. Version 2.10 06/10/92
  44.     The code now works on the 64bit ETA10 and CRAY without modifications or
  45.      #defines.  I believe the code should work on any machine that
  46.      defines long, int or short to be 8 bytes long.
  47.     Thanks to Shabbir J. Safdar (shabby@mentor.cc.purdue.edu)
  48.      for helping me fix the code to run on 64bit machines (he had
  49.      access to an ETA10).
  50.     Thanks also to John Fletcher <john_fletcher@lccmail.ocf.llnl.gov>
  51.      for testing the routines on a CRAY.
  52.     read_password.c has been renamed to read_passwd.c
  53.     string_to_key.c has been renamed to string2key.c
  54.  
  55. Version 2.00 14/09/92
  56.     Made mods so that the library should work on 64bit CPU's.
  57.     Removed all my uchar and ulong defs.  To many different
  58.      versions of unix define them in their header files in too many
  59.      different combinations :-)
  60.     IRIX - Sillicon Graphics mods (mostly in read_password.c).
  61.      Thanks to Andrew Daviel (advax@erich.triumf.ca)
  62.  
  63. Version 1.99 26/08/92
  64.     Fixed a bug or 2 in enc_read.c
  65.     Fixed a bug in enc_write.c
  66.     Fixed a pseudo bug in fcrypt.c (very obscure).
  67.  
  68. Version 1.98 31/07/92
  69.     Support for the ETA10.  This is a strange machine that defines
  70.     longs and ints as 8 bytes and shorts as 4 bytes.
  71.     Since I do evil things with long * that assume that they are 4
  72.     bytes.  Look in the Makefile for the option to compile for
  73.     this machine.  quad_cksum appears to have problems but I
  74.     will don't have the time to fix it right now, and this is not
  75.     a function that uses DES and so will not effect the main uses
  76.     of the library.
  77.  
  78. Version 1.97 20/05/92 eay
  79.     Fixed the Imakefile and made some changes to des.h to fix some
  80.     problems when building this package with Kerberos v 4.
  81.  
  82. Version 1.96 18/05/92 eay
  83.     Fixed a small bug in string_to_key() where problems could
  84.     occur if des_check_key was set to true and the string
  85.     generated a weak key.
  86.  
  87. Patch2 posted to comp.sources.misc
  88. Version 1.95 13/05/92 eay
  89.     Added an alternative version of the D_ENCRYPT macro in
  90.     ecb_encrypt and fcrypt.  Depending on the compiler, one version or the
  91.     other will be faster.  This was inspired by 
  92.     Dana How <how@isl.stanford.edu>, and her pointers about doing the
  93.     *(ulong *)((uchar *)ptr+(value&0xfc))
  94.     vs
  95.     ptr[value&0x3f]
  96.     to stop the C compiler doing a <<2 to convert the long array index.
  97.  
  98. Version 1.94 05/05/92 eay
  99.     Fixed an incompatibility between my string_to_key and the MIT
  100.      version.  When the key is longer than 8 chars, I was wrapping
  101.      with a different method.  To use the old version, define
  102.      OLD_STR_TO_KEY in the makefile.  Thanks to
  103.      viktor@newsu.shearson.com (Viktor Dukhovni).
  104.  
  105. Version 1.93 28/04/92 eay
  106.     Fixed the VMS mods so that echo is now turned off in
  107.      read_password.  Thanks again to brennan@coco.cchs.su.oz.AU.
  108.     MSDOS support added.  The routines can be compiled with
  109.      Turbo C (v2.0) and MSC (v5.1).  Make sure MSDOS is defined.
  110.  
  111. Patch1 posted to comp.sources.misc
  112. Version 1.92 13/04/92 eay
  113.     Changed D_ENCRYPT so that the rotation of R occurs outside of
  114.      the loop.  This required rotating all the longs in sp.h (now
  115.      called spr.h). Thanks to Richard Outerbridge <71755.204@CompuServe.COM>
  116.     speed.c has been changed so it will work without SIGALRM.  If
  117.      times(3) is not present it will try to use ftime() instead.
  118.  
  119. Version 1.91 08/04/92 eay
  120.     Added -E/-D options to des(1) so it can use string_to_key.
  121.     Added SVR4 mods suggested by witr@rwwa.COM
  122.     Added VMS mods suggested by brennan@coco.cchs.su.oz.AU.  If
  123.     anyone knows how to turn of tty echo in VMS please tell me or
  124.     implement it yourself :-).
  125.     Changed FILE *IN/*OUT to *DES_IN/*DES_OUT since it appears VMS
  126.     does not like IN/OUT being used.
  127.  
  128. Libdes posted to comp.sources.misc
  129. Version 1.9 24/03/92 eay
  130.     Now contains a fast small crypt replacement.
  131.     Added des(1) command.
  132.     Added des_rw_mode so people can use cbc encryption with
  133.     enc_read and enc_write.
  134.  
  135. Version 1.8 15/10/91 eay
  136.     Bug in cbc_cksum.
  137.     Many thanks to Keith Reynolds (keithr@sco.COM) for pointing this
  138.     one out.
  139.  
  140. Version 1.7 24/09/91 eay
  141.     Fixed set_key :-)
  142.     set_key is 4 times faster and takes less space.
  143.     There are a few minor changes that could be made.
  144.  
  145. Version 1.6 19/09/1991 eay
  146.     Finally go IP and FP finished.
  147.     Now I need to fix set_key.
  148.     This version is quite a bit faster that 1.51
  149.  
  150. Version 1.52 15/06/1991 eay
  151.     20% speedup in ecb_encrypt by changing the E bit selection
  152.     to use 2 32bit words.  This also required modification of the
  153.     sp table.  There is still a way to speedup the IP and IP-1
  154.     (hints from outer@sq.com) still working on this one :-(.
  155.  
  156. Version 1.51 07/06/1991 eay
  157.     Faster des_encrypt by loop unrolling
  158.     Fixed bug in quad_cksum.c (thanks to hughes@logos.ucs.indiana.edu)
  159.  
  160. Version 1.50 28/05/1991 eay
  161.     Optimized the code a bit more for the sparc.  I have improved the
  162.     speed of the inner des_encrypt by speeding up the initial and
  163.     final permutations.
  164.  
  165. Version 1.40 23/10/1990 eay
  166.     Fixed des_random_key, it did not produce a random key :-(
  167.  
  168. Version 1.30  2/10/1990 eay
  169.     Have made des_quad_cksum the same as MIT's, the full package
  170.     should be compatible with MIT's
  171.     Have tested on a DECstation 3100
  172.     Still need to fix des_set_key (make it faster).
  173.     Does des_cbc_encrypts at 70.5k/sec on a 3100.
  174.  
  175. Version 1.20 18/09/1990 eay
  176.     Fixed byte order dependencies.
  177.     Fixed (I hope) all the word alignment problems.
  178.     Speedup in des_ecb_encrypt.
  179.  
  180. Version 1.10 11/09/1990 eay
  181.     Added des_enc_read and des_enc_write.
  182.     Still need to fix des_quad_cksum.
  183.     Still need to document des_enc_read and des_enc_write.
  184.  
  185. Version 1.00 27/08/1990 eay
  186.