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

Variable Index

 o blockSize

Constructor Index

 o BlockCipher(int, int)

Method Index

 o blockSize()
 o decrypt(byte[])
WP decrypts an array where the length must be a multiple of 8
 o decrypt(byte[], byte[])
 o decrypt(byte[], int, byte[], int)
 o encrypt(byte[])
WP encrypts an array where the length must be a multiple of 8
 o encrypt(byte[], byte[])
 o encrypt(byte[], int, byte[], int)

Variables

 o blockSize
  protected int blockSize

Constructors

 o BlockCipher
  protected BlockCipher(int keySize,
                        int blockSize)

Methods

 o blockSize
  public int blockSize()
 o encrypt
  public abstract void encrypt(byte clearText[],
                               int clearOff,
                               byte cipherText[],
                               int cipherOff)
 o decrypt
  public abstract void decrypt(byte cipherText[],
                               int cipherOff,
                               byte clearText[],
                               int clearOff)
 o encrypt
  public void encrypt(byte clearText[],
                      byte cipherText[])
 o decrypt
  public void decrypt(byte cipherText[],
                      byte clearText[])
 o encrypt
  public byte[] encrypt(byte clearText[])
WP encrypts an array where the length must be a multiple of 8
 o 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