| java.lang.Object org.bouncycastle.crypto.engines.ISAACEngine
ISAACEngine | public class ISAACEngine implements StreamCipher(Code) | | Implementation of Bob Jenkin's ISAAC (Indirection Shift Accumulate Add and Count).
see: http://www.burtleburtle.net/bob/rand/isaacafa.html
|
init | public void init(boolean forEncryption, CipherParameters params)(Code) | | initialise an ISAAC cipher.
Parameters: forEncryption - whether or not we are for encryption. Parameters: params - the parameters required to set up the cipher. exception: IllegalArgumentException - if the params argument isinappropriate. |
processBytes | public void processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)(Code) | | |
reset | public void reset()(Code) | | |
returnByte | public byte returnByte(byte in)(Code) | | |
|
|