|
|
|||||||||||
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.AES
Simple java AES algorithm as a random stream.
Use JCE AES algorithm.
Field Summary | |
(package private) Cipher |
algo
actual cipher algorithm |
(package private) byte[] |
inAlgoBuffer
encrypt buffer full of 0x00's, only if no file exists |
(package private) byte[] |
outAlgoBuffer
ecrypted result, only if no file exists |
(package private) int |
outAlgoBufferIx
index in to encrypted result, outAlgoBuffer |
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 | |
AES()
|
|
AES(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 |
Cipher algo
byte[] inAlgoBuffer
byte[] outAlgoBuffer
int outAlgoBufferIx
Constructor Detail |
public AES()
public AES(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
AlgoRandomStream.setup()
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 |