home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l180 / 1.ddi / CIPHER.BAS < prev    next >
Encoding:
BASIC Source File  |  1989-02-07  |  5.4 KB  |  162 lines

  1.   ' ************************************************
  2.   ' **  Name:          CIPHER                     **
  3.   ' **  Type:          Program                    **
  4.   ' **  Module:        CIPHER.BAS                 **
  5.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  6.   ' ************************************************
  7.   '
  8.   ' USAGE:   CIPHER  filename.ext key    or    CIPHER /NEWKEY
  9.   ' .MAK FILE:       CIPHER.BAS
  10.   '                  RANDOMS.BAS
  11.   ' PARAMETERS:      filename      Name of file to be ciphered or deciphered
  12.   '                  key           String of one or more words used as the
  13.   '                                cipher key
  14.   ' VARIABLES:       cmd$          Working copy of COMMAND$
  15.   '                  i%            Loop index
  16.   '                  firstSpace%   Location in command line of first character
  17.   '                  fileName$     Name of file to be processed
  18.   '                  key$          String to be used as cipher key
  19.   '                  fileLength&   Length of file to be processed
  20.   '                  a$            Workspace for groups of bytes from the file
  21.   '                  count%        Number of groups of bytes to be processed
  22.   '                  j&            Location in file of each group of bytes
  23.   
  24.   ' Constants
  25.     CONST BYTES = 1000&
  26.   
  27.   ' Functions
  28.     DECLARE FUNCTION NewWord$ ()
  29.     DECLARE FUNCTION Rand& ()
  30.     DECLARE FUNCTION RandInteger% (a%, b%)
  31.   
  32.   ' Subprograms
  33.     DECLARE SUB RandShuffle (key$)
  34.     DECLARE SUB ProcesX (a$)
  35.   
  36.   ' Initialization
  37.     CLS
  38.     PRINT "CIPHER "; COMMAND$
  39.     PRINT
  40.   
  41.   ' Grab the command line parameters
  42.     cmd$ = COMMAND$
  43.   
  44.   ' If no command line parameters, then tell user what's needed
  45.     IF cmd$ = "" THEN
  46.         PRINT
  47.         PRINT "Usage:  CIPHER /NEWKEY"
  48.         PRINT "(or)    CIPHER filename key-string"
  49.         PRINT
  50.         SYSTEM
  51.     END IF
  52.   
  53.   ' If /NEWKEY option, generate a few new words, and then quit
  54.     IF INSTR(cmd$, "/NEWKEY") THEN
  55.       
  56.       ' Clear the screen and describe the output
  57.         CLS
  58.         PRINT "Randomly created words that can be used as cipher keys..."
  59.         PRINT
  60.         RandShuffle DATE$ + TIME$ + STR$(TIMER)
  61.         FOR i% = 1 TO 9
  62.             PRINT NewWord$; " ";
  63.         NEXT i%
  64.         PRINT
  65.         SYSTEM
  66.     END IF
  67.   
  68.   ' Get the filename from the command line
  69.     cmd$ = cmd$ + " "
  70.     firstSpace% = INSTR(cmd$, " ")
  71.     fileName$ = LEFT$(cmd$, firstSpace% - 1)
  72.   
  73.   ' Grab the rest of the command line as the cipher key
  74.     key$ = LTRIM$(MID$(cmd$, firstSpace% + 1))
  75.   
  76.   ' Prepare the pseudorandom numbers using the key for shuffling
  77.     RandShuffle key$
  78.   
  79.   ' Open up the file
  80.     OPEN fileName$ FOR BINARY AS #1
  81.     fileLength& = LOF(1)
  82.   
  83.   ' Process the file in manageable pieces
  84.     a$ = SPACE$(BYTES)
  85.     count% = fileLength& \ BYTES
  86.   
  87.   ' Loop through the file
  88.     FOR i% = 0 TO count%
  89.         j& = i% * BYTES + 1
  90.         IF i% = count% THEN
  91.             a$ = SPACE$(fileLength& - BYTES * count%)
  92.         END IF
  93.         GET #1, j&, a$
  94.         ProcesX a$
  95.         PUT #1, j&, a$
  96.     NEXT i%
  97.   
  98.   ' All done
  99.     SYSTEM
  100.   
  101.   ' ************************************************
  102.   ' **  Name:          NewWord$                   **
  103.   ' **  Type:          Function                   **
  104.   ' **  Module:        CIPHER.BAS                 **
  105.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  106.   ' ************************************************
  107.   '
  108.   ' Returns a pseudorandom word of a possibly
  109.   ' speakable form.
  110.   '
  111.   ' EXAMPLE OF USE: PRINT NewWord$
  112.   ' PARAMETERS:     (none)
  113.   ' VARIABLES:      vowel$     String constant listing the set of vowels
  114.   '                 consonant$ String constant listing the set of consonants
  115.   '                 syllables% Random number of syllables for the new word
  116.   '                 i%         Loop index for creating each syllable
  117.   '                 t$         Temporary work string for forming the new word
  118.   ' MODULE LEVEL
  119.   '   DECLARATIONS: DECLARE FUNCTION NewWord$ ()
  120.   '
  121.     FUNCTION NewWord$ STATIC
  122.         CONST vowel$ = "aeiou"
  123.         CONST consonant$ = "bcdfghjklmnpqrstvwxyz"
  124.         syllables% = Rand& MOD 3 + 1
  125.         FOR i% = 1 TO syllables%
  126.             t$ = t$ + MID$(consonant$, RandInteger%(1, 21), 1)
  127.             IF i% = 1 THEN
  128.                 t$ = UCASE$(t$)
  129.             END IF
  130.             t$ = t$ + MID$(vowel$, RandInteger%(1, 5), 1)
  131.         NEXT i%
  132.         IF Rand& MOD 2 THEN
  133.             t$ = t$ + MID$(consonant$, RandInteger%(1, 21), 1)
  134.         END IF
  135.         NewWord$ = t$
  136.         t$ = ""
  137.     END FUNCTION
  138.   
  139.   ' ************************************************
  140.   ' **  Name:          ProcesX                    **
  141.   ' **  Type:          Subprogram                 **
  142.   ' **  Module:        CIPHER.BAS                 **
  143.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  144.   ' ************************************************
  145.   '
  146.   ' Enciphers a string by XORing with pseudorandom bytes.
  147.   '
  148.   ' EXAMPLE OF USE:  ProcesX a$
  149.   ' PARAMETERS:      a$         String to be ciphered
  150.   ' VARIABLES:       i%         Index into the string
  151.   '                  byte%      Numeric value of each string character
  152.   ' MODULE LEVEL
  153.   '   DECLARATIONS:  DECLARE SUB ProcesX (a$)
  154.   '
  155.     SUB ProcesX (a$) STATIC
  156.         FOR i% = 1 TO LEN(a$)
  157.             byte% = ASC(MID$(a$, i%, 1)) XOR RandInteger%(0, 255)
  158.             MID$(a$, i%, 1) = CHR$(byte%)
  159.         NEXT i%
  160.     END SUB
  161.   
  162.