Uses of Interface
net.schmizz.sshj.transport.cipher.Cipher
-
Packages that use Cipher Package Description com.hierynomus.sshj.transport.cipher com.hierynomus.sshj.userauth.keyprovider net.schmizz.sshj net.schmizz.sshj.transport net.schmizz.sshj.transport.cipher -
-
Uses of Cipher in com.hierynomus.sshj.transport.cipher
Classes in com.hierynomus.sshj.transport.cipher that implement Cipher Modifier and Type Class Description class
ChachaPolyCipher
class
GcmCipher
class
StreamCipher
Methods in com.hierynomus.sshj.transport.cipher that return Cipher Modifier and Type Method Description Cipher
BlockCiphers.Factory. create()
Cipher
ChachaPolyCiphers.Factory. create()
Cipher
GcmCiphers.Factory. create()
Cipher
StreamCiphers.Factory. create()
-
Uses of Cipher in com.hierynomus.sshj.userauth.keyprovider
Fields in com.hierynomus.sshj.userauth.keyprovider with type parameters of type Cipher Modifier and Type Field Description private static java.util.Map<java.lang.String,Factory.Named<Cipher>>
OpenSSHKeyV1KeyFile. SUPPORTED_CIPHERS
Methods in com.hierynomus.sshj.userauth.keyprovider that return Cipher Modifier and Type Method Description private Cipher
OpenSSHKeyV1KeyFile. createCipher(java.lang.String cipherName)
Methods in com.hierynomus.sshj.userauth.keyprovider with parameters of type Cipher Modifier and Type Method Description private void
OpenSSHKeyV1KeyFile. initializeCipher(java.lang.String kdfName, byte[] kdfOptions, Cipher cipher)
-
Uses of Cipher in net.schmizz.sshj
Fields in net.schmizz.sshj with type parameters of type Cipher Modifier and Type Field Description private java.util.List<Factory.Named<Cipher>>
ConfigImpl. cipherFactories
Methods in net.schmizz.sshj that return types with arguments of type Cipher Modifier and Type Method Description java.util.List<Factory.Named<Cipher>>
Config. getCipherFactories()
Retrieve the list of named factories forCipher
.java.util.List<Factory.Named<Cipher>>
ConfigImpl. getCipherFactories()
Method parameters in net.schmizz.sshj with type arguments of type Cipher Modifier and Type Method Description void
Config. setCipherFactories(java.util.List<Factory.Named<Cipher>> cipherFactories)
Set the named factories forCipher
.void
ConfigImpl. setCipherFactories(java.util.List<Factory.Named<Cipher>> cipherFactories)
-
Uses of Cipher in net.schmizz.sshj.transport
Fields in net.schmizz.sshj.transport declared as Cipher Modifier and Type Field Description protected Cipher
Converter. cipher
Methods in net.schmizz.sshj.transport with parameters of type Cipher Modifier and Type Method Description (package private) void
Converter. setAlgorithms(Cipher cipher, MAC mac, Compression compression)
(package private) void
Decoder. setAlgorithms(Cipher cipher, MAC mac, Compression compression)
(package private) void
Encoder. setAlgorithms(Cipher cipher, MAC mac, Compression compression)
-
Uses of Cipher in net.schmizz.sshj.transport.cipher
Classes in net.schmizz.sshj.transport.cipher that implement Cipher Modifier and Type Class Description class
AES128CBC
Deprecated.class
AES128CTR
Deprecated.class
AES192CBC
Deprecated.class
AES192CTR
Deprecated.class
AES256CBC
Deprecated.class
AES256CTR
Deprecated.class
BaseCipher
Base class for all Cipher implementations delegating to the JCE provider.class
BlockCipher
class
BlowfishCBC
Deprecated.class
NoneCipher
Represents a no-op cipher.class
TripleDESCBC
Deprecated.Methods in net.schmizz.sshj.transport.cipher that return Cipher Modifier and Type Method Description Cipher
AES128CBC.Factory. create()
Cipher
AES128CTR.Factory. create()
Cipher
AES192CBC.Factory. create()
Cipher
AES192CTR.Factory. create()
Cipher
AES256CBC.Factory. create()
Cipher
AES256CTR.Factory. create()
Cipher
BlowfishCBC.Factory. create()
Cipher
NoneCipher.Factory. create()
Cipher
TripleDESCBC.Factory. create()
-