home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / CRYPT / SES152.ZIP / MSMENU.153 < prev    next >
Encoding:
Text File  |  1987-01-14  |  2.2 KB  |  43 lines

  1. 1000 REM
  2. 1010 REM
  3. 1020 REM          <<<<  M S - 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        * 8088/86 Personal Computer *
  12. 1110 REM        *                           *
  13. 1120 REM        * * * * * * * * * * * * * * *
  14. 1130 REM
  15. 1140 REM
  16. 1160 PRINT "  -------> PC Security by Encipherment <-------                "
  17. 1170 PRINT "                                                               "
  18. 1180 PRINT "                                                               "
  19. 1190 PRINT "  Options:       MS-DOS 88/86 Generic Version                  "
  20. 1200 PRINT "                                                               "
  21. 1210 PRINT "   (1) SuperEncipherment of Binary FILES resulting in          "
  22. 1220 PRINT "       binary FILES. This data will contain non-printable      "
  23. 1230 PRINT "       characters. Read files as Sectors. No Console input.    "
  24. 1240 PRINT "                                                               "
  25. 1250 PRINT "   (2) SuperEncipherment of Printable data input from files    "
  26. 1260 PRINT "       or Console. The output is always printable and is       "
  27. 1270 PRINT "       line-oriented; using carriage returns <CR>. The         "
  28. 1280 PRINT "       output may go to the printer, a file, or the console.   "
  29. 1290 PRINT "                                                               "
  30. 1300 PRINT "   (3) Documentation/Help screen                               "
  31. 1305 PRINT "                                                               "
  32. 1310 PRINT "   (4) Securely Delete & Erase a file; and its data            "
  33. 1320 PRINT "                                                               "
  34. 1340 PRINT "   (9) - - - EXIT / STOP / END of Menu                         "
  35. 1350 PRINT " "
  36. 1360 PRINT " Enter Which Option NUMBER ====> ";
  37. 1370 INPUT O%
  38. 1380 IF O%=1 THEN CHAIN "MS-CODE1.EXE"
  39. 1390 IF O%=2 THEN CHAIN "MS-CODE2.EXE"
  40. 1400 IF O%=3 THEN CHAIN "MS-HELP.EXE"
  41. 1410 IF O%=4 THEN CHAIN "MS-ZERO.EXE"
  42. 1440 END
  43.