home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Security / Security.zip / sct01b.zip / readme < prev    next >
Text File  |  1998-06-10  |  2KB  |  96 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.                       ┌───────────────────────────┐
  12.                       │ D O N ' T   P A N I C   ! │
  13.                       │                           │
  14.                       └───────────────────────────┘
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24. Readme for sCT simple crypto tool, version 0.1beta
  25. ==================================================
  26.  
  27. sCT orginated from a small "learning C" course at the University of
  28. Applied Science FH-Wedel, Germany. 
  29. We should do a library for simple crypted file IO - and because of I 
  30. ever missed a smart tool for simple and fast file crypting, I build 
  31. sCT on top of these library. 
  32.  
  33. What it does
  34. ============
  35.  
  36. It encodes a file (text or binary) with a password, so that it is not readable 
  37. without the password. The algorithm is simple, but effective.
  38. For sure, it's not as safe as PGP or RSA, but it's enough for someone
  39. who just knows a mouse is a computer device... :-)
  40.  
  41. Text can come from a file or from stdin, and can be saved in another file
  42. or to stdout.
  43.  
  44. Usage is simple
  45. ===============
  46.  
  47. to encode a file:
  48.   sct e -fin <file to encode> -fout <save file> -p <password>
  49. to decode a file
  50.   sct d -fin <encoded file> -fout <save file> -p <password>
  51.  
  52. * -fin and -fout are optional.
  53. * if -fin is missing, stdin is assumed.
  54. * if -fout is missing, stdout is assumed.
  55. * if -p is missing, you will be asked.
  56.   (not possible if input comes from stdin!)
  57.  
  58. For example, if you want to crypt the output of the "dir" command:
  59.  
  60.   dir | sct e -fout crypted.dir -p somepassword
  61.  
  62. and if you want to decode and print it on the screen
  63.  
  64.   sct d -fin crypted.dir -p somepassword
  65.  
  66. Compiling
  67. =========
  68.  
  69. The sct.exe in this archive is an OS/2 program.
  70. But sct is written in ANSI C, and you should be able to compile it under
  71. every platform having an ANSI C compiler :-) 
  72. It is developed under OS/2 4.0 with famous GNU C.
  73.  
  74. The makefile in this archive is for the OS/2 version of gnu make.
  75.  
  76. Feel free to play around with the source of sct. 
  77. As I mentioned in the source files, I'm NOT a skilled C developer. So if you
  78. find bugs or have hints for better code, please email me.
  79.  
  80. Contact
  81. =======
  82.  
  83. Julian Buss
  84. Tinsdaler Weg 127
  85. 22880 Wedel
  86. Germany
  87.  
  88. julian@wh.fh-wedel.de
  89.  
  90. What's this "don't panic" thing?!?
  91. ==================================
  92.  
  93. huh... you DON'T know "Hitchikers Guide To The Galaxy" from Douglas
  94. Adams?!? 
  95. Read it! 
  96.