Class cryptiX.crypto.BlockCipher
All Packages Class Hierarchy This Package Previous Next Index
Class cryptiX.crypto.BlockCipher
java.lang.Object
|
+----cryptiX.crypto.CryptoUtils
|
+----cryptiX.crypto.Cipher
|
+----cryptiX.crypto.BlockCipher
- public class BlockCipher
- extends Cipher
-
blockSize
-
-
BlockCipher(int, int)
-
-
blockSize()
-
-
decrypt(byte[])
- WP
decrypts an array where the length must be a multiple of 8
-
decrypt(byte[], byte[])
-
-
decrypt(byte[], int, byte[], int)
-
-
encrypt(byte[])
- WP
encrypts an array where the length must be a multiple of 8
-
encrypt(byte[], byte[])
-
-
encrypt(byte[], int, byte[], int)
-
blockSize
protected int blockSize
BlockCipher
protected BlockCipher(int keySize,
int blockSize)
blockSize
public int blockSize()
encrypt
public abstract void encrypt(byte clearText[],
int clearOff,
byte cipherText[],
int cipherOff)
decrypt
public abstract void decrypt(byte cipherText[],
int cipherOff,
byte clearText[],
int clearOff)
encrypt
public void encrypt(byte clearText[],
byte cipherText[])
decrypt
public void decrypt(byte cipherText[],
byte clearText[])
encrypt
public byte[] encrypt(byte clearText[])
- WP
encrypts an array where the length must be a multiple of 8
decrypt
public byte[] decrypt(byte cipherText[])
- WP
decrypts an array where the length must be a multiple of 8
All Packages Class Hierarchy This Package Previous Next Index