Package com.jcraft.jsch
Interface Cipher
-
- All Known Implementing Classes:
AES128CBC
,AES128CTR
,AES192CBC
,AES192CTR
,AES256CBC
,AES256CTR
,ARCFOUR
,ARCFOUR128
,ARCFOUR256
,BlowfishCBC
,CipherNone
,TripleDESCBC
,TripleDESCTR
public interface Cipher
-
-
Field Summary
Fields Modifier and Type Field Description static int
DECRYPT_MODE
static int
ENCRYPT_MODE
-
Method Summary
All Methods Instance Methods Abstract 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
-
ENCRYPT_MODE
static final int ENCRYPT_MODE
- See Also:
- Constant Field Values
-
DECRYPT_MODE
static final int DECRYPT_MODE
- See Also:
- Constant Field Values
-
-