|
[Expand]
Inherited Methods |
From class
net.schmizz.sshj.transport.cipher.BaseCipher
|
int
|
getBlockSize()
|
|
int
|
getIVSize()
|
|
void
|
init(Cipher.Mode mode, byte[] key, byte[] iv)
Initialize the cipher for encryption or decryption with the given private key and initialization vector
|
|
void
|
update(byte[] input, int inputOffset, int inputLen)
Performs in-place encryption or decryption on the given data.
|
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
From interface
net.schmizz.sshj.transport.cipher.Cipher
|
abstract
int
|
getBlockSize()
|
|
abstract
int
|
getIVSize()
|
|
abstract
void
|
init(Cipher.Mode mode, byte[] key, byte[] iv)
Initialize the cipher for encryption or decryption with the given private key and initialization vector
|
|
abstract
void
|
update(byte[] input, int inputOffset, int inputLen)
Performs in-place encryption or decryption on the given data.
|
|