home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / pcmag / vol4n18.arc / LOCK.DOC < prev    next >
Text File  |  1986-09-11  |  2KB  |  57 lines

  1.  
  2.           LOCK (and UNLOCK)                       Steven Holzner
  3.           Commands                      PC Magazine Vol 4, No 18
  4.         Copyright 1985 Ziff-Davis Publishing Company
  5.           
  6.           ______________________________________________________
  7.  
  8.           Purpose:  Encrypts a file, rendering it unreadable to
  9.                     anyone who does not know the user-chosen
  10.                     passphrase.  Complementarily, using the same
  11.                     passphrase, de-encrypts the file.
  12.  
  13.           Format:   LOCK [d:][path]filename[.ext] [d:][path]
  14.                     [filename][.ext]
  15.                                  or
  16.                     UNLOCK [d:][path]filename[.ext] [d:][path]
  17.                     [filename][.ext]
  18.  
  19.           Remarks:  The user-selected passphrase can be up to 64
  20.                     characters in length; the programs prompt you
  21.                     to supply it.  Files to be LOCKed and
  22.                     UNLOCKed must be less than 62K in length.  If
  23.                     you do not supply new filenames for the
  24.                     locked and unlocked files, the programs use
  25.                     the default filename FILE.LOC.
  26.  
  27.           Example:  You have a file of student course evaluations
  28.                     named CONFY on drive C: that you wish to mail
  29.                     to a colleague in encrypted form.  You put a
  30.                     formatted floppy disk in drive A:, and at the
  31.                     C> prompt you enter
  32.  
  33.                          LOCK CONFY A:CRIMSON
  34.  
  35.                     When the program asks for a passphrase, you
  36.                     enter VERITAS.
  37.  
  38.                     The CRIMSON file on the disk will be
  39.                     unreadable.  When your colleague--who must,
  40.                     of course, be told the passphrase you have
  41.                     used--puts the disk in his machine, he types
  42.  
  43.                          UNLOCK CRIMSON GUIDE
  44.  
  45.                     When prompted, he supplies the passphrase
  46.                     VERITAS, and his file GUIDE will be identical
  47.                     to your original file CONFY.
  48.  
  49.                     Notes:
  50.  
  51.                     1.   LOCK and UNLOCK do not delete any files,
  52.                          original or encoded.
  53.  
  54.                     2.   Requires DOS version 2.0 or later.
  55.  
  56.  
  57.