Package com.jcraft.jsch.jce
Class ARCFOUR
- java.lang.Object
-
- com.jcraft.jsch.jce.ARCFOUR
-
-
Field Summary
Fields Modifier and Type Field Description private static int
bsize
private javax.crypto.Cipher
cipher
private static int
ivsize
-
Fields inherited from interface com.jcraft.jsch.Cipher
DECRYPT_MODE, ENCRYPT_MODE
-
-
Constructor Summary
Constructors Constructor Description ARCFOUR()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getBlockSize()
int
getIVSize()
void
init(int mode, byte[] key, byte[] iv)
boolean
isCBC()
void
update(byte[] foo, int s1, int len, byte[] bar, int s2)
-
-
-
Field Detail
-
ivsize
private static final int ivsize
- See Also:
- Constant Field Values
-
bsize
private static final int bsize
- See Also:
- Constant Field Values
-
cipher
private javax.crypto.Cipher cipher
-
-
Method Detail
-
getBlockSize
public int getBlockSize()
- Specified by:
getBlockSize
in interfaceCipher
-
init
public void init(int mode, byte[] key, byte[] iv) throws java.lang.Exception
-
update
public void update(byte[] foo, int s1, int len, byte[] bar, int s2) throws java.lang.Exception
-
-