home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / jsage / znode3 / uploads / coder2.lbr / CDR2.DZC / CDR2.DOC
Encoding:
Text File  |  1993-06-07  |  3.0 KB  |  110 lines

  1.  
  2.  
  3.  
  4.                           -=> Coder <=-
  5.  
  6.                               v2.0
  7.  
  8.                            John Curtis
  9.  
  10.                           July 16, 1991
  11.  
  12.  
  13.  
  14. ** GENERAL **
  15.  
  16.      Coder  is  an encryption program which will encode an  ASCII
  17. file making it unreadable to all except who has the proper  pass-
  18. code.   The use for such a program?   Perhaps you keep a personal
  19. journal  on your computer which may contain items of a very  per-
  20. sonal  or embarrassing nature.   Maybe you have a need for  truly
  21. 'private' E-Mail.   In general,  any item you wish to remain pri-
  22. vate or share only with selected others.   Who knows who could be
  23. feeling around through your computer when you are not around.
  24.  
  25.  
  26.   ** THEORY OF OPERATION **
  27.  
  28.      Coder  uses  a fairly sophisticated encryption  method.   As
  29.   each   character  is  encoded  the  following   variables   are
  30.   considered:
  31.  
  32.      - the length of the line
  33.      - the position of the character in that line
  34.      - the line number
  35.      - the assigned password
  36.  
  37.  
  38.   ** CODER2 **
  39.  
  40.      This version fixes the bug that would cause Coder to fail on
  41.   some  files.   Added  complete command line control  to  insure
  42.   quick  and reliable operation.   Basicly this program has  been
  43.   nearly completely rewritten.
  44.  
  45.  
  46.   ** USE **
  47.  
  48.      The syntax to invoke CDR2 is as follows:
  49.  
  50.           A>CDR mode filename.ext password
  51.  
  52.           The available modes are: ENCODE and DECODE.
  53.           Passwords are NOT case sensitive.
  54.  
  55.      Examples:
  56.  
  57.           A>CDR ENCODE MYFILE.TXT MYPASS
  58.           A>CDR DECODE MYFILE.TXT MYPASS
  59.  
  60.      NOT acceptable:
  61.  
  62.           A>CDR ENCODE B:MYFILE.TXT MYPASS
  63.           * This will result in the loss of your file!
  64.  
  65.           Wildcards are also unacceptable.
  66.  
  67.      Entering  CDR alone on the command line will display a  help
  68.   menu.
  69.  
  70.  
  71. ** PASSWORDS **
  72.  
  73. **  IF YOU LOOSE OR FORGET YOUR PASSWORD YOU MAY BE  S.O.L..  YOU
  74. WILL BE UNABLE TO RECOVER YOUR FILE.   So use a password you  can
  75. remember or write it down some where in a covert manner.
  76.  
  77.  
  78. ** DECODING **
  79.  
  80.      Enter  the DECODE command and your password then the encoded
  81. file  will  be replaced with the  original  information.   If  by
  82. chance  you  enter  the wrong password and realize it  after  the
  83. decoding  starts not to worry.   Let the process  finish,  ENCODE
  84. the  file  with  the same wrong password,  then DECODE  with  the
  85. proper password.
  86.  
  87.  
  88. ** MULTIPLE ENCODING **
  89.  
  90.      It  is possible to encode a file more than  once,  with  the
  91. same  password or with different passwords.   This of course will
  92. increase  the security of the file but it also will increase  the
  93. complexity of decoding the file.  It must be decoded in the EXACT
  94. reverse of the way it was encoded.
  95.  
  96.  
  97. ** CODER2.LBR **
  98.  
  99.      Contains:
  100.           CDR2.COM -the compiled program
  101.           CDR2.DOC -this file
  102.           CDR2.BAS -source code
  103.  
  104.  
  105.      I hope this program fulfills that paranoid need in your life
  106. as it has mine!                        -JLC
  107.  
  108.  
  109.  
  110.