Uses of Class
org.apache.sshd.common.cipher.Cipher.Mode
-
Packages that use Cipher.Mode Package Description org.apache.sshd.common.cipher Cipherimplementations.org.apache.sshd.common.session.helpers -
-
Uses of Cipher.Mode in org.apache.sshd.common.cipher
Fields in org.apache.sshd.common.cipher declared as Cipher.Mode Modifier and Type Field Description protected Cipher.ModeBaseCipher. modeprotected Cipher.ModeBaseGCMCipher. modeprotected Cipher.ModeChaCha20Cipher. modeMethods in org.apache.sshd.common.cipher that return Cipher.Mode Modifier and Type Method Description static Cipher.ModeCipher.Mode. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Cipher.Mode[]Cipher.Mode. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.sshd.common.cipher with parameters of type Cipher.Mode Modifier and Type Method Description protected javax.crypto.CipherBaseCipher. createCipherInstance(Cipher.Mode mode, byte[] key, byte[] iv)protected javax.crypto.CipherBaseGCMCipher. createCipherInstance(Cipher.Mode mode, byte[] key, byte[] iv)protected javax.crypto.CipherBaseRC4Cipher. createCipherInstance(Cipher.Mode mode, byte[] key, byte[] iv)voidBaseCipher. init(Cipher.Mode mode, byte[] key, byte[] iv)voidChaCha20Cipher. init(Cipher.Mode mode, byte[] key, byte[] iv)voidCipher. init(Cipher.Mode mode, byte[] key, byte[] iv)Initialize the cipher for encryption or decryption with the given key and initialization vectorvoidCipherNone. 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.Mode Modifier and Type Field Description private Cipher.ModeAbstractSession.MessageCodingSettings. modeConstructors in org.apache.sshd.common.session.helpers with parameters of type Cipher.Mode Constructor Description MessageCodingSettings(Cipher cipher, Mac mac, Compression compression, Cipher.Mode mode, byte[] key, byte[] iv)
-