home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / files / a / crypt / !Crypt / !Help < prev    next >
Encoding:
Text File  |  1990-11-14  |  2.8 KB  |  72 lines

  1. Help with '!Crypt' version 1.00 (28-Feb-1990)
  2.  
  3. (C) Stephen Early 1990. This program is in the
  4. Public Domain. It may be freely distributed,
  5. provided that this text file is distributed with it
  6. unchanged.
  7.  
  8.  
  9.   !Crypt is a file encryptor. It uses two passwords
  10. to encrypt a file in such a way that it is
  11. impossible to obtain the original version of the
  12. file from the encrypted one without the passwords.
  13. (For those interested, the encoding/decoding is done
  14. using exclusive-ORing, in PROCencdec at the end of
  15. the program.)
  16.  
  17.   !Crypt is installed by double-clicking on its icon
  18. in a Filer window. Its icon appears on the icon bar.
  19. Clicking on this icon brings up the password window.
  20. The user must choose two passwords, both different,
  21. and enter them into the boxes in the window. Please
  22. note that the passwords ARE case sensitive, and are
  23. displayed on the screen as '*' characters to
  24. prevent anybody from reading them over your
  25. shoulder. Once you have entered the two passwords,
  26. press Enter with the caret in the "Password 2" box,
  27. or click on "OK" to store the passwords. Clicking on
  28. "Cancel" will wipe the two passwords from memory.
  29.  
  30.   Once you have entered the two passwords, the
  31. password box disappears. It can be brought up again
  32. by clicking on the icon, and the passwords can be
  33. edited. Dragging a file from a directory viewer to
  34. the Crypt icon will bring up a Save box. Change the
  35. filename inside this box to the name that you want
  36. to save the file under, and drag the file icon to a
  37. directory viewer. There will be a pause while the
  38. file is encrypted. (This will be speeded up in a
  39. later version.) Once the file has been encrypted,
  40. the passwords are erased from memory. It is up to
  41. you to erase the original file.
  42.  
  43.   Decoding a file is almost the same as encoding
  44. one. Enter the passwords that were used to encrypt
  45. the file, and drag the encrypted file to the Crypt
  46. icon. A Save box will appear with the icon of the
  47. original file. Change the filename to the one you
  48. want, and drag the icon to a directory viewer. The
  49. file will be decrypted. If the passwords were
  50. incorrect, then the "decrypted" file will just be
  51. rubbish - random characters.
  52.  
  53. Technical notes
  54. --------- -----
  55.  
  56.   I have used filetype &1EC for encrypted files.
  57. This is officially a "user" filetype - for
  58. individual users to do whatever they like with. If
  59. this clashes with a filetype used by another program
  60. then just change all occurences of the strings "1EC"
  61. and "1ec" into whatever filetype you choose - the
  62. Basic editor is good for this. Also, the name of the
  63. "file_1ec" sprite in the !Sprites file must be
  64. changed.
  65.  
  66.   The next version of this program will grab all the
  67. available free memory (from the Wimp's "Free" slot)
  68. while encrypting and decrypting, and use machine
  69. code to speed things up. The use of this larger
  70. buffer should mean that encryption is no longer a
  71. very slow process!
  72.