| java.lang.Object org.bouncycastle.crypto.engines.SkipjackEngine
SkipjackEngine | public class SkipjackEngine implements BlockCipher(Code) | | a class that provides a basic SKIPJACK engine.
|
Method Summary | |
public int | decryptBlock(byte[] in, int inOff, byte[] out, int outOff) | public int | encryptBlock(byte[] in, int inOff, byte[] out, int outOff) | public String | getAlgorithmName() | public int | getBlockSize() | public void | init(boolean encrypting, CipherParameters params) initialise a SKIPJACK cipher. | public int | processBlock(byte[] in, int inOff, byte[] out, int outOff) | public void | reset() |
BLOCK_SIZE | final static int BLOCK_SIZE(Code) | | |
ftable | static short ftable(Code) | | |
decryptBlock | public int decryptBlock(byte[] in, int inOff, byte[] out, int outOff)(Code) | | |
encryptBlock | public int encryptBlock(byte[] in, int inOff, byte[] out, int outOff)(Code) | | |
getBlockSize | public int getBlockSize()(Code) | | |
init | public void init(boolean encrypting, CipherParameters params)(Code) | | initialise a SKIPJACK cipher.
Parameters: encrypting - whether or not we are for encryption. Parameters: params - the parameters required to set up the cipher. exception: IllegalArgumentException - if the params argument isinappropriate. |
processBlock | public int processBlock(byte[] in, int inOff, byte[] out, int outOff)(Code) | | |
reset | public void reset()(Code) | | |
|
|