| Package | Description |
|---|---|
| org.apache.sshd |
Defines the two main classes for the client and server side of SSH protocol support.
|
| org.apache.sshd.agent | |
| org.apache.sshd.agent.local | |
| org.apache.sshd.agent.unix | |
| org.apache.sshd.client | |
| org.apache.sshd.client.auth | |
| org.apache.sshd.client.kex | |
| org.apache.sshd.common | |
| org.apache.sshd.common.cipher |
Cipher implementations. |
| org.apache.sshd.common.compression |
Compression implementations. |
| org.apache.sshd.common.digest |
Digest implementations. |
| org.apache.sshd.common.forward | |
| org.apache.sshd.common.mac |
Mac implementations. |
| org.apache.sshd.common.random |
Random implementations. |
| org.apache.sshd.common.signature |
Signature implementations. |
| org.apache.sshd.server | |
| org.apache.sshd.server.auth | |
| org.apache.sshd.server.auth.gss | |
| org.apache.sshd.server.channel | |
| org.apache.sshd.server.sftp |
| Modifier and Type | Field and Description |
|---|---|
protected java.util.List<NamedFactory<Command>> |
SshServer.subsystemFactories |
protected java.util.List<NamedFactory<UserAuth>> |
SshServer.userAuthFactories |
protected java.util.List<NamedFactory<UserAuth>> |
SshClient.userAuthFactories |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<NamedFactory<Command>> |
SshServer.getSubsystemFactories() |
java.util.List<NamedFactory<UserAuth>> |
SshServer.getUserAuthFactories() |
java.util.List<NamedFactory<UserAuth>> |
SshClient.getUserAuthFactories() |
| Modifier and Type | Method and Description |
|---|---|
void |
SshServer.setSubsystemFactories(java.util.List<NamedFactory<Command>> subsystemFactories) |
void |
SshServer.setUserAuthFactories(java.util.List<NamedFactory<UserAuth>> userAuthFactories) |
void |
SshClient.setUserAuthFactories(java.util.List<NamedFactory<UserAuth>> userAuthFactories) |
| Modifier and Type | Method and Description |
|---|---|
NamedFactory<Channel> |
SshAgentFactory.getChannelForwardingFactory()
Retrieve the channel factory used to create channels on the client side.
|
| Modifier and Type | Class and Description |
|---|---|
static class |
ChannelAgentForwarding.Factory |
| Modifier and Type | Method and Description |
|---|---|
NamedFactory<Channel> |
ProxyAgentFactory.getChannelForwardingFactory() |
NamedFactory<Channel> |
LocalAgentFactory.getChannelForwardingFactory() |
| Modifier and Type | Method and Description |
|---|---|
NamedFactory<Channel> |
UnixAgentFactory.getChannelForwardingFactory() |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<NamedFactory<UserAuth>> |
ClientFactoryManager.getUserAuthFactories()
Retrieve a list of UserAuth factories.
|
| Modifier and Type | Class and Description |
|---|---|
static class |
UserAuthKeyboardInteractive.Factory |
static class |
UserAuthPassword.Factory |
static class |
UserAuthPublicKey.Factory |
| Modifier and Type | Class and Description |
|---|---|
static class |
DHG1.Factory
Named factory for DHG1 key exchange
|
static class |
DHG14.Factory
Named factory for DHG14 key exchange
|
static class |
DHGEX.Factory
Named factory for DHGEX key exchange
|
static class |
DHGEX256.Factory
Named factory for DHGEX key exchange
|
static class |
ECDHP256.Factory |
static class |
ECDHP384.Factory |
static class |
ECDHP521.Factory |
| Modifier and Type | Field and Description |
|---|---|
protected java.util.List<NamedFactory<Channel>> |
AbstractFactoryManager.channelFactories |
protected java.util.List<NamedFactory<Cipher>> |
AbstractFactoryManager.cipherFactories |
protected java.util.List<NamedFactory<Compression>> |
AbstractFactoryManager.compressionFactories |
protected java.util.List<NamedFactory<KeyExchange>> |
AbstractFactoryManager.keyExchangeFactories |
protected java.util.List<NamedFactory<Mac>> |
AbstractFactoryManager.macFactories |
protected java.util.List<NamedFactory<Signature>> |
AbstractFactoryManager.signatureFactories |
| Modifier and Type | Method and Description |
|---|---|
static <T> NamedFactory<T> |
NamedFactory.Utils.get(java.util.List<NamedFactory<T>> factories,
java.lang.String name)
Retrieve the factory identified by its name from the list.
|
static <T> NamedFactory<T> |
NamedFactory.Utils.remove(java.util.List<NamedFactory<T>> factories,
java.lang.String name)
Remove the factory identified by the name from the list.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<NamedFactory<Channel>> |
FactoryManager.getChannelFactories()
Retrieve the list of named factories for
Channel objects. |
java.util.List<NamedFactory<Channel>> |
AbstractFactoryManager.getChannelFactories() |
java.util.List<NamedFactory<Cipher>> |
FactoryManager.getCipherFactories()
Retrieve the list of named factories for
Cipher. |
java.util.List<NamedFactory<Cipher>> |
AbstractFactoryManager.getCipherFactories() |
java.util.List<NamedFactory<Compression>> |
FactoryManager.getCompressionFactories()
Retrieve the list of named factories for
Compression. |
java.util.List<NamedFactory<Compression>> |
AbstractFactoryManager.getCompressionFactories() |
java.util.List<NamedFactory<KeyExchange>> |
FactoryManager.getKeyExchangeFactories()
Retrieve the list of named factories for
KeyExchange. |
java.util.List<NamedFactory<KeyExchange>> |
AbstractFactoryManager.getKeyExchangeFactories() |
java.util.List<NamedFactory<Mac>> |
FactoryManager.getMacFactories()
Retrieve the list of named factories for
Mac. |
java.util.List<NamedFactory<Mac>> |
AbstractFactoryManager.getMacFactories() |
java.util.List<NamedFactory<Signature>> |
FactoryManager.getSignatureFactories()
Retrieve the list of named factories for
Signature. |
java.util.List<NamedFactory<Signature>> |
AbstractFactoryManager.getSignatureFactories() |
| Modifier and Type | Method and Description |
|---|---|
static <T> T |
NamedFactory.Utils.create(java.util.List<NamedFactory<T>> factories,
java.lang.String name)
Create an instance of the specified name by looking up the needed factory
in the list.
|
static <T> NamedFactory<T> |
NamedFactory.Utils.get(java.util.List<NamedFactory<T>> factories,
java.lang.String name)
Retrieve the factory identified by its name from the list.
|
static <T> java.lang.String |
NamedFactory.Utils.getNames(java.util.List<NamedFactory<T>> factories)
Get a comma separated list of the factory names from the given list.
|
static <T> NamedFactory<T> |
NamedFactory.Utils.remove(java.util.List<NamedFactory<T>> factories,
java.lang.String name)
Remove the factory identified by the name from the list.
|
void |
AbstractFactoryManager.setChannelFactories(java.util.List<NamedFactory<Channel>> channelFactories) |
void |
AbstractFactoryManager.setCipherFactories(java.util.List<NamedFactory<Cipher>> cipherFactories) |
void |
AbstractFactoryManager.setCompressionFactories(java.util.List<NamedFactory<Compression>> compressionFactories) |
void |
AbstractFactoryManager.setKeyExchangeFactories(java.util.List<NamedFactory<KeyExchange>> keyExchangeFactories) |
void |
AbstractFactoryManager.setMacFactories(java.util.List<NamedFactory<Mac>> macFactories) |
void |
AbstractFactoryManager.setSignatureFactories(java.util.List<NamedFactory<Signature>> signatureFactories) |
| Modifier and Type | Class and Description |
|---|---|
static class |
AES128CBC.Factory
Named factory for AES128CBC Cipher
|
static class |
AES128CTR.Factory
Named factory for AES128CTR Cipher
|
static class |
AES192CBC.Factory
Named factory for AES192CBC Cipher
|
static class |
AES256CBC.Factory
Named factory for AES256CBC Cipher
|
static class |
AES256CTR.Factory
Named factory for AES256CTR Cipher
|
static class |
ARCFOUR128.Factory
Named factory for AES128CTR Cipher
|
static class |
ARCFOUR256.Factory
Named factory for AES128CTR Cipher
|
static class |
BlowfishCBC.Factory
Named factory for BlowfishCBC Cipher
|
static class |
CipherNone.Factory
Named factory for the no-op Cipher
|
static class |
TripleDESCBC.Factory
Named factory for TripleDESCBC Cipher
|
| Modifier and Type | Class and Description |
|---|---|
static class |
CompressionDelayedZlib.Factory
Named factory for the ZLib Delayed Compression.
|
static class |
CompressionNone.Factory
Named factory for the no-op
Compression. |
static class |
CompressionZlib.Factory
Named factory for the ZLib Compression.
|
| Modifier and Type | Class and Description |
|---|---|
static class |
MD5.Factory
Named factory for MD5 digest
|
static class |
SHA1.Factory
Named factory for SHA1 digest
|
static class |
SHA256.Factory
Named factory for SHA1 digest
|
static class |
SHA384.Factory
Named factory for SHA1 digest
|
static class |
SHA512.Factory
Named factory for SHA1 digest
|
| Modifier and Type | Class and Description |
|---|---|
static class |
TcpipServerChannel.DirectTcpipFactory |
static class |
TcpipServerChannel.ForwardedTcpipFactory |
| Modifier and Type | Class and Description |
|---|---|
static class |
HMACMD5.Factory
Named factory for the HMACMD5
Mac |
static class |
HMACMD596.Factory
Named factory for the HMAC-MD5-96
Mac |
static class |
HMACSHA1.Factory
Named factory for the HMAC-SHA1
Mac |
static class |
HMACSHA196.Factory
Named factory for the HMAC-SHA1-96
Mac |
static class |
HMACSHA256.Factory
Named factory for the HMAC-SHA256
Mac |
static class |
HMACSHA512.Factory
Named factory for the HMAC-SHA512
Mac |
| Modifier and Type | Class and Description |
|---|---|
static class |
BouncyCastleRandom.Factory
Named factory for the BouncyCastle
Random |
static class |
JceRandom.Factory
Named factory for the BouncyCastle
Random |
class |
SingletonRandomFactory
A random factory wrapper that uses a single random instance.
|
| Constructor and Description |
|---|
SingletonRandomFactory(NamedFactory<Random> factory) |
| Modifier and Type | Class and Description |
|---|---|
static class |
SignatureDSA.Factory
A named factory for DSA signature
|
static class |
SignatureECDSA.NISTP256Factory
A named factory for ECDSA signatures of NIST P-256
|
static class |
SignatureECDSA.NISTP384Factory
A named factory for ECDSA signatures of NIST P-384
|
static class |
SignatureECDSA.NISTP521Factory
A named factory for ECDSA signatures of NIST P-521
|
static class |
SignatureRSA.Factory
A named factory for RSA
Signature |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<NamedFactory<Command>> |
ServerFactoryManager.getSubsystemFactories()
Retrieve the list of named factories for
CommandFactory.Command to
be used to create subsystems. |
java.util.List<NamedFactory<UserAuth>> |
ServerFactoryManager.getUserAuthFactories()
Retrieve the list of named factories for
UserAuth |
| Modifier and Type | Class and Description |
|---|---|
static class |
UserAuthNone.Factory |
| Modifier and Type | Class and Description |
|---|---|
static class |
UserAuthGSS.Factory
Factory class.
|
| Modifier and Type | Class and Description |
|---|---|
static class |
ChannelSession.Factory |
| Modifier and Type | Class and Description |
|---|---|
static class |
SftpSubsystem.Factory |
Copyright © 2008-2014 The Apache Software Foundation. All Rights Reserved.