Package net.schmizz.sshj.transport.kex
Class Curve25519SHA256.FactoryLibSsh
- java.lang.Object
-
- net.schmizz.sshj.transport.kex.Curve25519SHA256.FactoryLibSsh
-
- All Implemented Interfaces:
Factory<KeyExchange>
,Factory.Named<KeyExchange>
- Enclosing class:
- Curve25519SHA256
public static class Curve25519SHA256.FactoryLibSsh extends java.lang.Object implements Factory.Named<KeyExchange>
Named factory for Curve25519SHA256 key exchange
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.schmizz.sshj.common.Factory
Factory.Named<T>
-
Nested classes/interfaces inherited from interface net.schmizz.sshj.common.Factory.Named
Factory.Named.Util
-
-
Constructor Summary
Constructors Constructor Description FactoryLibSsh()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KeyExchange
create()
java.lang.String
getName()
-
-
-
Method Detail
-
create
public KeyExchange create()
- Specified by:
create
in interfaceFactory<KeyExchange>
- Returns:
- a new object created using this factory.
-
getName
public java.lang.String getName()
- Specified by:
getName
in interfaceFactory.Named<KeyExchange>
- Returns:
- the name of this factory.
-
-