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

Constructor Index

 o StreamCipher(int)

Method Index

 o decrypt(byte)
 o decrypt(byte[], byte[])
 o decrypt(byte[], int, byte[], int, int)
 o encrypt(byte)
 o encrypt(byte[], byte[])
 o encrypt(byte[], int, byte[], int, int)

Constructors

 o StreamCipher
  protected StreamCipher(int keySize)

Methods

 o encrypt
  public abstract byte encrypt(byte clearText)
 o decrypt
  public abstract byte decrypt(byte cipherText)
 o encrypt
  public void encrypt(byte clearText[],
                      byte cipherText[])
 o decrypt
  public void decrypt(byte cipherText[],
                      byte clearText[])
 o encrypt
  public void encrypt(byte clearText[],
                      int clearOff,
                      byte cipherText[],
                      int cipherOff,
                      int len)
 o decrypt
  public void decrypt(byte cipherText[],
                      int cipherOff,
                      byte clearText[],
                      int clearOff,
                      int len)

All Packages  Class Hierarchy  This Package  Previous  Next  Index