Class cryptiX.crypto.Rot13Cipher
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class cryptiX.crypto.Rot13Cipher

java.lang.Object
   |
   +----cryptiX.crypto.CryptoUtils
           |
           +----cryptiX.crypto.Cipher
                   |
                   +----cryptiX.crypto.StreamCipher
                           |
                           +----cryptiX.crypto.Rot13Cipher

public class Rot13Cipher
extends StreamCipher

Constructor Index

 o Rot13Cipher()

Method Index

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

Constructors

 o Rot13Cipher
  public Rot13Cipher()

Methods

 o setKey
  public void setKey(byte key[])
Overrides:
setKey in class Cipher
 o encrypt
  public byte encrypt(byte clearText)
Overrides:
encrypt in class StreamCipher
 o decrypt
  public byte decrypt(byte cipherText)
Overrides:
decrypt in class StreamCipher
 o encrypt
  public void encrypt(byte clearText[],
                      int clearOff,
                      byte cipherText[],
                      int cipherOff,
                      int len)
Overrides:
encrypt in class StreamCipher
 o decrypt
  public void decrypt(byte cipherText[],
                      int cipherOff,
                      byte clearText[],
                      int clearOff,
                      int len)
Overrides:
decrypt in class StreamCipher

All Packages  Class Hierarchy  This Package  Previous  Next  Index