home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 264b.lha / butils / crypt.doc < prev    next >
Text File  |  1989-07-09  |  969b  |  32 lines

  1. CRYPT 1.2    by Bill Dimm
  2.  
  3. USAGE:
  4.         crypt keyword [infile outfile]
  5.     
  6. DESCRIPTION:
  7.  
  8.      Crypt will use the keyword to encode/decode the infile into the
  9. outfile.  The keyword must be at least 3 characters long.  If infile 
  10. & outfile are not given it will use standard input and standard output 
  11. respectively.  Warning:  Do not use the same file name for both input
  12. and output.
  13.  
  14.  
  15. EXAMPLE:
  16.  
  17. To encrypt the contents of a file called "testit" into a new file
  18. called "testit.cpt" using the password "whata program":
  19.  
  20.     crypt "whata program" testit testit.cpt
  21.     
  22. To display the contents of "testit.cpt" in the original (uncrypted) form:
  23.  
  24.     crypt "whata program" <testit.cpt
  25.     
  26. IMPROVEMENTS:
  27.  
  28.     Crypt 1.2 has been recompiled with Lattice 5.02 so that it is a 
  29. little smaller.  The problem previously noted on receiving input
  30. from a pipe in Matt Dillon's shell seems to have disappeared (I don't
  31. know if this is due to a newer version of the shell or what...)
  32.