Package com.jcraft.jsch
Interface Cipher
- All Known Implementing Classes:
AES128CBC,AES128CTR,AES128GCM,AES192CBC,AES192CTR,AES256CBC,AES256CTR,AES256GCM,AESGCM,ARCFOUR,ARCFOUR128,ARCFOUR256,BlowfishCBC,BlowfishCTR,CAST128CBC,CAST128CTR,ChaCha20Poly1305,CipherNone,SEEDCBC,TripleDESCBC,TripleDESCTR,Twofish128CBC,Twofish128CTR,Twofish192CBC,Twofish192CTR,Twofish256CBC,Twofish256CTR,TwofishCBC,TwofishCTR
public interface Cipher
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoiddoFinal(byte[] foo, int s1, int len, byte[] bar, int s2) intintintvoidinit(int mode, byte[] key, byte[] iv) booleanisAEAD()booleanisCBC()booleanvoidupdate(byte[] foo, int s1, int len, byte[] bar, int s2) voidupdate(int foo) voidupdateAAD(byte[] foo, int s1, int len)
-
Field Details
-
ENCRYPT_MODE
static final int ENCRYPT_MODE- See Also:
-
DECRYPT_MODE
static final int DECRYPT_MODE- See Also:
-
-
Method Details