Class cryptiX.crypto.StreamCipher
All Packages Class Hierarchy This Package Previous Next Index
Class cryptiX.crypto.StreamCipher
java.lang.Object
|
+----cryptiX.crypto.CryptoUtils
|
+----cryptiX.crypto.Cipher
|
+----cryptiX.crypto.StreamCipher
- public class StreamCipher
- extends Cipher
-
StreamCipher(int)
-
-
decrypt(byte)
-
-
decrypt(byte[], byte[])
-
-
decrypt(byte[], int, byte[], int, int)
-
-
encrypt(byte)
-
-
encrypt(byte[], byte[])
-
-
encrypt(byte[], int, byte[], int, int)
-
StreamCipher
protected StreamCipher(int keySize)
encrypt
public abstract byte encrypt(byte clearText)
decrypt
public abstract byte decrypt(byte cipherText)
encrypt
public void encrypt(byte clearText[],
byte cipherText[])
decrypt
public void decrypt(byte cipherText[],
byte clearText[])
encrypt
public void encrypt(byte clearText[],
int clearOff,
byte cipherText[],
int cipherOff,
int len)
decrypt
public void decrypt(byte cipherText[],
int cipherOff,
byte clearText[],
int clearOff,
int len)
All Packages Class Hierarchy This Package Previous Next Index