Uses of Enum Class
org.apache.sshd.common.cipher.Cipher.Mode
Packages that use Cipher.Mode
-
Uses of Cipher.Mode in org.apache.sshd.common.cipher
Fields in org.apache.sshd.common.cipher declared as Cipher.ModeModifier and TypeFieldDescriptionprotected Cipher.Mode
BaseGCMCipher.mode
protected Cipher.Mode
ChaCha20Cipher.mode
Methods in org.apache.sshd.common.cipher that return Cipher.ModeModifier and TypeMethodDescriptionstatic Cipher.Mode
Returns the enum constant of this class with the specified name.static Cipher.Mode[]
Cipher.Mode.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.sshd.common.cipher with parameters of type Cipher.ModeModifier and TypeMethodDescriptionprotected Cipher
BaseCipher.createCipherInstance
(Cipher.Mode mode, byte[] key, byte[] iv) protected Cipher
BaseGCMCipher.createCipherInstance
(Cipher.Mode mode, byte[] key, byte[] iv) protected Cipher
BaseRC4Cipher.createCipherInstance
(Cipher.Mode mode, byte[] key, byte[] iv) void
BaseCipher.init
(Cipher.Mode mode, byte[] key, byte[] iv) void
ChaCha20Cipher.init
(Cipher.Mode mode, byte[] key, byte[] iv) void
Cipher.init
(Cipher.Mode mode, byte[] key, byte[] iv) Initialize the cipher for encryption or decryption with the given key and initialization vectorvoid
CipherNone.init
(Cipher.Mode mode, byte[] key, byte[] iv) protected byte[]
BaseCipher.initializeIVData
(Cipher.Mode mode, byte[] iv, int reqLen) protected byte[]
BaseRC4Cipher.initializeIVData
(Cipher.Mode mode, byte[] iv, int reqLen) protected byte[]
BaseCipher.initializeKeyData
(Cipher.Mode mode, byte[] key, int reqLen) -
Uses of Cipher.Mode in org.apache.sshd.common.session.helpers
Fields in org.apache.sshd.common.session.helpers declared as Cipher.ModeModifier and TypeFieldDescriptionprivate final Cipher.Mode
AbstractSession.MessageCodingSettings.mode
Constructors in org.apache.sshd.common.session.helpers with parameters of type Cipher.ModeModifierConstructorDescriptionMessageCodingSettings
(Cipher cipher, Mac mac, Compression compression, Cipher.Mode mode, byte[] key, byte[] iv)