Compile: gcc -o ORYX ORYX.c

---------------------------------------------------

Usage: ORYX numKeystreamBytes

where numKeystreamBytes == no. of keystream bytes to generate

----------------------------------------------------

The file "out.txt" was generated from

    ORYX 100

The key consists of the initial fills of 
registers X, A and B. For the file out.txt,
the initial fills used were
initial X = 0x70e8ac16
initial A = 0x9af1208d
initial B = 0x2a840fc5
These initial fills, which are hardcoded into
the program, appear in the file out.txt.
The L table was initialized using RC4, as 
specified in the function initL.

Note: This program only generates keystream bytes,
it does not do the encryption/decryption.
