home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / DOS_HELP / PSWD21.ZIP / CRYPTPWD.DOC next >
Encoding:
Text File  |  1991-01-13  |  3.2 KB  |  86 lines

  1.  
  2.  
  3. CRYPTPWD.EXE  Copyright 1991 By Arnold R. McGall Jr.
  4.  
  5.                 All rights reserved worldwide.
  6.  
  7.                 User has the right to use this program and to distribute
  8.                 to anyone with out charge or gain.  User may not include
  9.                 this as part of any software intended for sale to a third
  10.                 party.
  11.  
  12.                 Owner disclaims any responsibility which may arise out of
  13.                 the use of this software.
  14.  
  15.  
  16. CRYPTPWD.EXE is designed to encrypt the ascii data found in input file PWD.DAT
  17. into a form not readable in any form except by the password.exe program (If
  18. the /E command line paramter is set when password.exe is executed).
  19.  
  20. The CRYPTPWD.EXE program will read the ascii text information in the PWD.DAT
  21. password file and create a temporary file named encpwd.dat.  Then the
  22. program will erase the ASCII PWD.DAT file and rename the encrypted ENCPWD.DAT
  23. file to PWD.DAT.
  24.  
  25.  
  26.  
  27. In order to maintain the encryptd PWD.DAT file to add/delete users or to
  28. change a user's password, it will be necessary to convert the encrypted
  29. PWD.DAT file back to a file conatining normal ascii text.  You do this
  30. with the companion program DECRYPWD.EXE.  A description of DECrypwd.EXE
  31. follows:
  32.  
  33. DECRYPWD.EXE uses the encrypted PWD.DAT file as input.  It then de-crypts
  34. the data in the encrypted PWD.DAT file and creates a temporary file named
  35. DECPWD.DAT.  Then the program deletes the encrypted PWD.DAT file and
  36. renames DECPWD.DAT to PWD.DAT.  The result is a PWD.DAT file which can
  37. be edited with any ascii text file editor.  NOTE:  Be sure to encrypt
  38. the ascii version of PWD.DAT once changes have been completed.
  39.  
  40.  
  41. Here's a simple step-by-step procedure to create the initial PWD.DAT
  42. ascii text file and to encrypt it:
  43.  
  44.  
  45.         1.  Create the PWD.DAT file with a standard ascii text editor.
  46.             Each line contains the user ID and password as follows:
  47.  
  48.                         USERID/PASSWORD
  49.  
  50.              The slash separating the user ID and password is mandatory.
  51.  
  52.         2.  To encrypt the PWD.DAT file you must run the CRYPTPWD.EXE
  53.             program while in the file directory where PWD.DAT resides.
  54.  
  55.             For example, if the CRPTPWD.EXE program is on a floppy disk
  56.             in drive A:, make the drive and directory where PWD.DAT
  57.             resides current.  Then execute CRYPTPWD.EXE as follows:
  58.  
  59.  
  60.                 A:\CRYPTPWD
  61.  
  62.         NOTE:  Remember that the password.exe program MUST be
  63.                executed with the /E command line paramter
  64.                switch set if it is to successfuly read an encrypted
  65.                PWD.DAT password file.
  66.  
  67.  
  68.  
  69. To change the encrypted PWD.DAT file back to a ascii text file just
  70. follow step number 2 above but substitute DECRYPWD.EXE for cryptpwd.exe.
  71.  
  72.  
  73. WARNING!!!!
  74.  
  75.   Once you have encrypted the ascii text PWD.DAT password file you will
  76.   NOT be able to read it with any editor.  So be carefull and follow the
  77.   instructions for it's use carefully.
  78.  
  79.   The programs CRYPTPWD.EXE and DECRYPWD.EXE should NOT be left on a
  80.   system after use.  I would suggest you keep these programs on a floppy
  81.   disk which is stored in a secured place.
  82.  
  83.  
  84.  
  85.  
  86.