All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----Acme.Crypto.CryptoUtils | +----Acme.Crypto.Cipher | +----Acme.Crypto.BlockCipher | +----Acme.Crypto.Des3Cipher
This is a fairly standard way of increasing the security of DES. You run each block through DES three times, first encrypting with key A, then decrypting with key B, then encrypting again with key A again.
Fetch the software.
Fetch the entire Acme package.
public Des3Cipher(String keyStr)
public Des3Cipher(byte key[])
public void setKey(byte key[])
public void encrypt(byte clearText[], int clearOff, byte cipherText[], int cipherOff)
public void decrypt(byte cipherText[], int cipherOff, byte clearText[], int clearOff)
All Packages Class Hierarchy This Package Previous Next Index
ACME Java ACME Labs