All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object
|
+----java.security.IJCE_Traceable
|
+----java.security.Cipher
|
+----cryptix.provider.rpk.StreamCipher
An RPK stream cipher operates on data one byte at a time, combining it with the session key's keystream output sequence.
A skipCountMask property is also used to compute
how many bytes from the keystream output sequence will
be discarded after combining every 256 bytes. The exact value
of the number of bytes to discard is computed by masking the
crc value of the whole preceding data processed so far.
References:
Copyright © 1997
Systemics Ltd on behalf of the
Cryptix Development Team.
All rights reserved.
$Revision: 1.3 $
skipCountMask to use.
public StreamCipher()
public int engineBlockSize()
public void engineInitEncrypt(Key key) throws KeyException
public void engineInitDecrypt(Key key) throws KeyException
public int engineUpdate(byte in[],
int inOffset,
int inLen,
byte out[],
int outOffset)
public void setSkipCountMask(int m)
skipCountMask to use.
skipCountMask to use. If
zero a default value will be chosen.
All Packages Class Hierarchy This Package Previous Next Index