home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / archiver / zcrypt.1.9.README < prev    next >
Encoding:
Text File  |  1993-01-05  |  4.3 KB  |  101 lines

  1. The files described below contain the encryption code for zip 1.9 and
  2. unzip 5.0.  They constitute only an add-on to the exportable versions
  3. (generally named zip19.zip or zip19.tar.Z, and unzip50.tar.Z)
  4. and cannot be used without the complete zip package.
  5.  
  6. This encryption code is not copyrighted and is put in the public domain. It
  7. was originally written in Europe and can be freely distributed from
  8. any country except the U.S.A. If this code is imported in the U.S.A,
  9. it cannot be re-exported from the U.S.A to another country. (This
  10. restriction might seem curious but this is what US law requires.)
  11. However, Phil Katz has said that he got an export license for his
  12. algorithm, so this hassle of separate distribution may cease one day.
  13.  
  14. LIKE ANYTHING ELSE THAT'S FREE, ZIP AND ITS ASSOCIATED UTILITIES ARE
  15. PROVIDED AS IS AND COME WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR
  16. IMPLIED. IN NO EVENT WILL THE AUTHORS BE LIABLE FOR ANY DAMAGES
  17. RESULTING FROM THE USE OF THIS SOFTWARE.
  18.  
  19. The encryption code is a direct transcription of the algorithm from
  20. Roger Schlafly, described by Phil Katz in the file appnote.txt. This
  21. file is distributed with the PKZIP program (even in the version
  22. without encryption capabilities). Note that the encryption will
  23. probably resist attacks by amateurs if the password is well chosen and
  24. long enough (at least 8 characters) but it will probably not resist
  25. attacks by experts.  Short passwords consisting of lower case letters
  26. only can be recovered in a few hours on any workstation. But for casual
  27. cryptography designed to keep your mother from reading your mail, it's
  28. OK.
  29.  
  30. IMPORTANT NOTES:
  31.  
  32. - zip 1.9 is is compatible with pkzip 1.93a, except when two features
  33.   are used: encryption or zip file created in a pipe or on a non
  34.   seekable device. pkzip versions of 2.0 will support such files, and
  35.   unzip 5.0 already supports them. (Thanks to Phil Katz for accepting
  36.   our suggested minor changes to the zip file format.)
  37.  
  38. - zip files produced by zip 1.9 must not be *updated* by zip 1.0 or
  39.   pkzip 1.10 or pkzip 1.93a, if they contain encrypted members, or if
  40.   they have been produced in a pipe or on a non seekable device. The
  41.   old versions of zip or pkzip would destroy the zip structure. The
  42.   old versions can list the contents of the zip file but cannot
  43.   extract it anyway (because of the new compression algorithm).  If
  44.   you do not use encryption and use regular disk files, you do not
  45.   have to care about this problem.
  46.  
  47.  
  48. Contents:
  49.  
  50. file      what it is
  51. ----      ----------
  52. Readme      This file.
  53. Where     where Zip/UnZip can be found
  54. crypt.c   Code for encryption and decryption
  55. zippatch      Patch to zip 1.9 makefile
  56. unzpatch      Patch to unzip 5.0 Makefile
  57. zipcloak.c   Main routine for ZipCloak.
  58. msdos/zipcloak.prj Project file for Borland (Turbo) C++.
  59. msdos/zip_cr.prj   Project file for Borland (Turbo) C++ (zip with encryption)
  60. vms/descrip.mmsVMS makefile
  61. vms/make_vaxc.comVMS command file for compilation with Vax C.
  62. vms/make_gcc.comVMS command file for compilation with gcc.
  63.  
  64. The makefiles not given here should be taken from the original zip 1.9
  65. and unzip 5.0 distributions. They require only minor modifications.
  66. Follow the instructions given at the beginning of the makefiles. For
  67. example, for the zip 1.9 Unix makefile, remove the comment symbol (#) in:
  68.  
  69. # MAKE = make CRYPTO="crypt.o" CLOAK="zipcloak" CRFLAG="-DCRYPT"
  70.  
  71. to get:
  72.  
  73. MAKE = make CRYPTO="crypt.o" CLOAK="zipcloak" CRFLAG="-DCRYPT"
  74.  
  75. or for the MSDOS makefiles, replace:
  76.  
  77. #CRYPTO=crypt.obj
  78. #CLOAK=zipcloak.exe
  79. #CRFLAG=-DCRYPT
  80.  
  81. with:
  82.  
  83. CRYPTO=crypt.obj
  84. CLOAK=zipcloak.exe
  85. CRFLAG=-DCRYPT
  86.  
  87. If you have the 'patch' utility, you can just do: patch < zippatch
  88. Similar changes must be made for the unzip Makefile.
  89.  
  90. If you are using the Turbo C integrated environment, you must add
  91. CRYPT to the compilation flags and use the project file zip_cr.prj.
  92.  
  93. All of the files are in Unix (LF only) format. On MSDOS systems, you
  94. can use the -a option of unzip to convert the source files to CRLF
  95. format. This is only necessary if you wish to edit the files -- they
  96. will compile as is with Microsoft C and Turbo/Borland C++ 1.0 or
  97. later. However, you will have to convert the files (using unzip -a)
  98. to the CRLF format to compile with the older Turbo C 1.0 or 2.0. You
  99. should be able to find unzip the same place you found this (see the file
  100. Where for details).
  101.