Uses of Interface
org.apache.sshd.common.kex.DHFactory
-
Packages that use DHFactory Package Description org.apache.sshd.client org.apache.sshd.client.kex org.apache.sshd.common.config org.apache.sshd.common.kex org.apache.sshd.server org.apache.sshd.server.kex -
-
Uses of DHFactory in org.apache.sshd.client
Fields in org.apache.sshd.client with type parameters of type DHFactory Modifier and Type Field Description static Function<DHFactory,KeyExchangeFactory>
ClientBuilder. DH2KEX
-
Uses of DHFactory in org.apache.sshd.client.kex
Fields in org.apache.sshd.client.kex declared as DHFactory Modifier and Type Field Description protected DHFactory
DHGClient. factory
protected DHFactory
DHGEXClient. factory
Methods in org.apache.sshd.client.kex with parameters of type DHFactory Modifier and Type Method Description static KeyExchangeFactory
DHGClient. newFactory(DHFactory delegate)
static KeyExchangeFactory
DHGEXClient. newFactory(DHFactory delegate)
Constructors in org.apache.sshd.client.kex with parameters of type DHFactory Constructor Description DHGClient(DHFactory factory, Session session)
DHGEXClient(DHFactory factory, Session session)
-
Uses of DHFactory in org.apache.sshd.common.config
Method parameters in org.apache.sshd.common.config with type arguments of type DHFactory Modifier and Type Method Description static <M extends AbstractFactoryManager>
MSshConfigFileReader. configureKeyExchanges(M manager, String value, boolean lenient, Function<? super DHFactory,? extends KeyExchangeFactory> xformer, boolean ignoreUnsupported)
static <M extends AbstractFactoryManager>
MSshConfigFileReader. configureKeyExchanges(M manager, PropertyResolver props, boolean lenient, Function<? super DHFactory,? extends KeyExchangeFactory> xformer, boolean ignoreUnsupported)
-
Uses of DHFactory in org.apache.sshd.common.kex
Classes in org.apache.sshd.common.kex that implement DHFactory Modifier and Type Class Description class
BuiltinDHFactories
Methods in org.apache.sshd.common.kex that return DHFactory Modifier and Type Method Description static DHFactory
BuiltinDHFactories. resolveFactory(String name)
static DHFactory
BuiltinDHFactories. unregisterExtension(String name)
Unregisters specified extensionMethods in org.apache.sshd.common.kex that return types with arguments of type DHFactory Modifier and Type Method Description List<DHFactory>
BuiltinDHFactories.ParseResult. getParsedFactories()
static NavigableSet<DHFactory>
BuiltinDHFactories. getRegisteredExtensions()
Methods in org.apache.sshd.common.kex with parameters of type DHFactory Modifier and Type Method Description static void
BuiltinDHFactories. registerExtension(DHFactory extension)
Registered aNamedFactory
to be available besides the built-in ones when parsing configurationConstructor parameters in org.apache.sshd.common.kex with type arguments of type DHFactory Constructor Description ParseResult(List<DHFactory> parsed, List<String> unsupported)
-
Uses of DHFactory in org.apache.sshd.server
Fields in org.apache.sshd.server with type parameters of type DHFactory Modifier and Type Field Description static Function<DHFactory,KeyExchangeFactory>
ServerBuilder. DH2KEX
-
Uses of DHFactory in org.apache.sshd.server.kex
Fields in org.apache.sshd.server.kex declared as DHFactory Modifier and Type Field Description protected DHFactory
DHGEXServer. factory
protected DHFactory
DHGServer. factory
Methods in org.apache.sshd.server.kex with parameters of type DHFactory Modifier and Type Method Description static KeyExchangeFactory
DHGEXServer. newFactory(DHFactory factory)
static KeyExchangeFactory
DHGServer. newFactory(DHFactory factory)
Constructors in org.apache.sshd.server.kex with parameters of type DHFactory Constructor Description DHGEXServer(DHFactory factory, Session session)
DHGServer(DHFactory factory, Session session)
-