|
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.fasteasytrade.JRandTest.IO.FileRandomStream com.fasteasytrade.JRandTest.IO.FileAlgoRandomStream com.fasteasytrade.JRandTest.Algo.SkipjackRandom
Skipjack algorithm as a random stream based on Skipjack encryption algorithm.
Field Summary | |
(package private) Skipjack |
algo
|
(package private) byte[] |
inputAlgoBuffer
inputAlgoBuffer is filled with zeros to Skipjack. |
(package private) byte[] |
outAlgoBuffer
The buffer is used as an output to Skipjack. |
(package private) int |
outAlgoBufferIx
|
Fields inherited from class com.fasteasytrade.JRandTest.IO.FileAlgoRandomStream |
maxCount, privateKey, privateKeyLength, publicKey, publicKeyLength |
Fields inherited from class com.fasteasytrade.JRandTest.IO.FileRandomStream |
actualSize, buffer, count, countLastRead, filename, open, SIZE |
Constructor Summary | |
SkipjackRandom()
|
|
SkipjackRandom(String keyFileName)
|
Method Summary | |
static void |
main(String[] args)
|
boolean |
openInputStream()
open the input stream. |
byte |
readByte()
read one byte from a file. |
int |
readInt()
Processing is similar to readByte. |
long |
readLong()
Processing is similar to readByte. |
void |
setup()
setup will be implemented by each subclass |
void |
setupKeys()
set up length and new arrays to public and private keys will be implemented by each algorithm |
Methods inherited from class com.fasteasytrade.JRandTest.IO.FileAlgoRandomStream |
getFilename, setFilename, setPrivateKey, setPrivateKeyFromFile, setPublicKey, setPublicKeyFromFile |
Methods inherited from class com.fasteasytrade.JRandTest.IO.FileRandomStream |
closeInputStream, finalize, isOpen |
Methods inherited from class java.lang.Object |
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.fasteasytrade.JRandTest.IO.RandomStream |
closeInputStream, isOpen |
Field Detail |
Skipjack algo
byte[] inputAlgoBuffer
byte[] outAlgoBuffer
int outAlgoBufferIx
Constructor Detail |
public SkipjackRandom()
public SkipjackRandom(String keyFileName)
Method Detail |
public void setupKeys()
AlgoRandomStream
will be implemented by each algorithm
setupKeys
in interface AlgoRandomStream
setupKeys
in class FileAlgoRandomStream
AlgoRandomStream.setupKeys()
public void setup()
FileAlgoRandomStream
setup
in interface AlgoRandomStream
setup
in class FileAlgoRandomStream
makes only once a new SHA1 object and an IV vector.
public boolean openInputStream() throws Exception
RandomStream
openInputStream
in interface RandomStream
openInputStream
in class FileRandomStream
Exception
if filename exists (not null), we open file and later will encrypt
it. Else, algorithm will generate random data (as PRNG).
public byte readByte() throws Exception
RandomStream
first time ( if !isOpen() ) open file/stream, and return byte
at end of file close stream and returns -1
readByte
in interface RandomStream
readByte
in class FileAlgoRandomStream
Exception
RandomStream.readByte()
public int readInt() throws Exception
RandomStream
readInt
in interface RandomStream
readInt
in class FileAlgoRandomStream
Exception
RandomStream.readInt()
public long readLong() throws Exception
RandomStream
readLong
in interface RandomStream
readLong
in class FileAlgoRandomStream
Exception
RandomStream.readLong()
public static void main(String[] args)
|
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |