home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / busi / pcode153.zip / PC-MENU.153 < prev    next >
Text File  |  1984-05-12  |  2KB  |  46 lines

  1. 1000 REM
  2. 1010 REM
  3. 1020 REM          <<<<  P C - M E N U   >>>>
  4. 1030 REM
  5. 1040 REM        * * * * * * * * * * * * * * *
  6. 1050 REM        *                           *
  7. 1060 REM        *  COPYRIGHT in the Public  *
  8. 1070 REM        *     Domain in 1984 by     *
  9. 1080 REM        *     Richard N. Colvard    *
  10. 1090 REM        *                           *
  11. 1100 REM        * For IBM Personal Computer *
  12. 1110 REM        *                           *
  13. 1120 REM        * * * * * * * * * * * * * * *
  14. 1130 REM
  15. 1140 REM
  16. 1150 CLS
  17. 1160 PRINT "  -------> PC Security by Encipherment <-------                "
  18. 1170 PRINT "                                                               "
  19. 1180 PRINT "                                                               "
  20. 1190 PRINT "  Options:       IBM PC-DOS  8 0 8 8  Version                  "
  21. 1200 PRINT "                                                               "
  22. 1210 PRINT "   (1) SuperEncipherment of Binary FILES resulting in          "
  23. 1220 PRINT "       binary FILES. This data will contain non-printable      "
  24. 1230 PRINT "       characters. Read files as Sectors. No Console input.    "
  25. 1240 PRINT "                                                               "
  26. 1250 PRINT "   (2) SuperEncipherment of Printable data input from files    "
  27. 1260 PRINT "       or Console. The output is always printable and is       "
  28. 1270 PRINT "       line-oriented; using carriage returns <CR>. The         "
  29. 1280 PRINT "       output may go to the printer, a file, or the console.   "
  30. 1290 PRINT "                                                               "
  31. 1300 PRINT "   (3) Documentation/Help screen                               "
  32. 1310 PRINT "   (4) Securely Delete & Erase a file; and its data            "
  33. 1320 PRINT "   (5) Verify Security Integrity; Tamper proof checking        "
  34. 1330 PRINT "                                                               "
  35. 1340 PRINT "   (9) - - - EXIT / STOP / END of Menu                         "
  36. 1350 PRINT " "
  37. 1360 INPUT " Enter Which Option NUMBER ====> ";O%
  38. 1370 REM
  39. 1380 IF O%=1 THEN CHAIN "PC-CODE1.EXE"
  40. 1390 IF O%=2 THEN CHAIN "PC-CODE2.EXE"
  41. 1400 IF O%=3 THEN CHAIN "PC-HELP.EXE"
  42. 1410 IF O%=4 THEN CHAIN "PC-ZERO.EXE"
  43. 1420 IF O%=5 THEN CHAIN "PC-TAMP1.EXE"
  44. 1430 CLS
  45. 1440 END
  46.