Uses of Interface
org.apache.sshd.common.NamedFactory
-
-
Uses of NamedFactory in org.apache.sshd.client
Methods in org.apache.sshd.client that return types with arguments of type NamedFactory Modifier and Type Method Description static List<NamedFactory<Compression>>
ClientBuilder. setUpDefaultCompressionFactories(boolean ignoreUnsupported)
static List<NamedFactory<Signature>>
ClientBuilder. setUpDefaultSignatureFactories(boolean ignoreUnsupported)
-
Uses of NamedFactory in org.apache.sshd.client.auth
Classes in org.apache.sshd.client.auth that implement NamedFactory Modifier and Type Class Description class
BuiltinUserAuthFactories
Provides a centralized location for the default built-in authentication factories -
Uses of NamedFactory in org.apache.sshd.client.auth.hostbased
Methods in org.apache.sshd.client.auth.hostbased that return types with arguments of type NamedFactory Modifier and Type Method Description List<NamedFactory<Signature>>
UserAuthHostBased. getSignatureFactories()
List<NamedFactory<Signature>>
UserAuthHostBasedFactory. getSignatureFactories()
Method parameters in org.apache.sshd.client.auth.hostbased with type arguments of type NamedFactory Modifier and Type Method Description void
UserAuthHostBased. setSignatureFactories(List<NamedFactory<Signature>> factories)
void
UserAuthHostBasedFactory. setSignatureFactories(List<NamedFactory<Signature>> factories)
-
Uses of NamedFactory in org.apache.sshd.client.auth.pubkey
Fields in org.apache.sshd.client.auth.pubkey with type parameters of type NamedFactory Modifier and Type Field Description protected List<NamedFactory<Signature>>
UserAuthPublicKey. factories
Methods in org.apache.sshd.client.auth.pubkey that return types with arguments of type NamedFactory Modifier and Type Method Description List<NamedFactory<Signature>>
UserAuthPublicKey. getSignatureFactories()
List<NamedFactory<Signature>>
UserAuthPublicKeyFactory. getSignatureFactories()
Method parameters in org.apache.sshd.client.auth.pubkey with type arguments of type NamedFactory Modifier and Type Method Description void
UserAuthPublicKey. setSignatureFactories(List<NamedFactory<Signature>> factories)
void
UserAuthPublicKeyFactory. setSignatureFactories(List<NamedFactory<Signature>> factories)
Constructor parameters in org.apache.sshd.client.auth.pubkey with type arguments of type NamedFactory Constructor Description UserAuthPublicKey(List<NamedFactory<Signature>> factories)
UserAuthPublicKeyFactory(List<NamedFactory<Signature>> factories)
-
Uses of NamedFactory in org.apache.sshd.client.config.hosts
Classes in org.apache.sshd.client.config.hosts that implement NamedFactory Modifier and Type Class Description class
KnownHostDigest
Available digesters for known hosts entriesFields in org.apache.sshd.client.config.hosts declared as NamedFactory Modifier and Type Field Description static NamedFactory<Mac>
KnownHostHashValue. DEFAULT_DIGEST
Methods in org.apache.sshd.client.config.hosts that return NamedFactory Modifier and Type Method Description NamedFactory<Mac>
KnownHostHashValue. getDigester()
Methods in org.apache.sshd.client.config.hosts with parameters of type NamedFactory Modifier and Type Method Description void
KnownHostHashValue. setDigester(NamedFactory<Mac> digester)
-
Uses of NamedFactory in org.apache.sshd.client.keyverifier
Methods in org.apache.sshd.client.keyverifier that return NamedFactory Modifier and Type Method Description protected NamedFactory<Mac>
KnownHostsServerKeyVerifier. getHostValueDigester(ClientSession clientSession, SocketAddress remoteAddress, SshdSocketAddress hostIdentity)
Invoked byKnownHostsServerKeyVerifier.prepareKnownHostEntry(ClientSession, SocketAddress, PublicKey)
in order to query whether to use a hashed value instead of a plain one for the written host name/address - default returnsnull
- i.e., no hashing -
Uses of NamedFactory in org.apache.sshd.common
Subinterfaces of NamedFactory in org.apache.sshd.common Modifier and Type Interface Description interface
BuiltinFactory<T>
A named optional factory.Fields in org.apache.sshd.common with type parameters of type NamedFactory Modifier and Type Field Description protected List<NamedFactory<Cipher>>
BaseBuilder. cipherFactories
protected List<NamedFactory<Compression>>
BaseBuilder. compressionFactories
protected List<NamedFactory<Mac>>
BaseBuilder. macFactories
protected List<NamedFactory<Signature>>
BaseBuilder. signatureFactories
Methods in org.apache.sshd.common that return types with arguments of type NamedFactory Modifier and Type Method Description static List<NamedFactory<Cipher>>
BaseBuilder. setUpDefaultCiphers(boolean ignoreUnsupported)
static List<NamedFactory<Mac>>
BaseBuilder. setUpDefaultMacs(boolean ignoreUnsupported)
static <T,E extends BuiltinFactory<T>>
List<NamedFactory<T>>BuiltinFactory. setUpFactories(boolean ignoreUnsupported, Collection<? extends E> preferred)
Method parameters in org.apache.sshd.common with type arguments of type NamedFactory Modifier and Type Method Description S
BaseBuilder. cipherFactories(List<NamedFactory<Cipher>> cipherFactories)
S
BaseBuilder. compressionFactories(List<NamedFactory<Compression>> compressionFactories)
static <T> T
NamedFactory. create(Collection<? extends NamedFactory<? extends T>> factories, String name)
Create an instance of the specified name by looking up the needed factory in the list.S
BaseBuilder. macFactories(List<NamedFactory<Mac>> macFactories)
S
BaseBuilder. signatureFactories(List<NamedFactory<Signature>> signatureFactories)
-
Uses of NamedFactory in org.apache.sshd.common.cipher
Subinterfaces of NamedFactory in org.apache.sshd.common.cipher Modifier and Type Interface Description interface
CipherFactory
Classes in org.apache.sshd.common.cipher that implement NamedFactory Modifier and Type Class Description class
BuiltinCiphers
Provides easy access to the currently implemented ciphersMethods in org.apache.sshd.common.cipher that return NamedFactory Modifier and Type Method Description static NamedFactory<Cipher>
BuiltinCiphers. unregisterExtension(String name)
Unregisters specified extensionMethods in org.apache.sshd.common.cipher with parameters of type NamedFactory Modifier and Type Method Description static BuiltinCiphers
BuiltinCiphers. fromFactory(NamedFactory<Cipher> factory)
-
Uses of NamedFactory in org.apache.sshd.common.compression
Subinterfaces of NamedFactory in org.apache.sshd.common.compression Modifier and Type Interface Description interface
CompressionFactory
Classes in org.apache.sshd.common.compression that implement NamedFactory Modifier and Type Class Description class
BuiltinCompressions
-
Uses of NamedFactory in org.apache.sshd.common.config
Classes in org.apache.sshd.common.config that implement NamedFactory Modifier and Type Class Description class
CompressionConfigValue
Provides a "bridge" between the configuration values and the actualNamedFactory
for theCompression
. -
Uses of NamedFactory in org.apache.sshd.common.digest
Subinterfaces of NamedFactory in org.apache.sshd.common.digest Modifier and Type Interface Description interface
DigestFactory
Classes in org.apache.sshd.common.digest that implement NamedFactory Modifier and Type Class Description class
BuiltinDigests
Provides easy access to the currently implemented digestsMethods in org.apache.sshd.common.digest with parameters of type NamedFactory Modifier and Type Method Description static BuiltinDigests
BuiltinDigests. fromFactory(NamedFactory<? extends Digest> factory)
-
Uses of NamedFactory in org.apache.sshd.common.io
Classes in org.apache.sshd.common.io that implement NamedFactory Modifier and Type Class Description class
BuiltinIoServiceFactoryFactories
-
Uses of NamedFactory in org.apache.sshd.common.kex
Methods in org.apache.sshd.common.kex that return types with arguments of type NamedFactory Modifier and Type Method Description List<NamedFactory<Cipher>>
AbstractKexFactoryManager. getCipherFactories()
List<NamedFactory<Cipher>>
KexFactoryManager. getCipherFactories()
Retrieve the list of named factories forCipher
.List<NamedFactory<Compression>>
AbstractKexFactoryManager. getCompressionFactories()
List<NamedFactory<Compression>>
KexFactoryManager. getCompressionFactories()
Retrieve the list of named factories forCompression
.List<NamedFactory<Mac>>
AbstractKexFactoryManager. getMacFactories()
List<NamedFactory<Mac>>
KexFactoryManager. getMacFactories()
Retrieve the list of named factories forMac
.List<NamedFactory<Signature>>
AbstractKexFactoryManager. getSignatureFactories()
Method parameters in org.apache.sshd.common.kex with type arguments of type NamedFactory Modifier and Type Method Description void
AbstractKexFactoryManager. setCipherFactories(List<NamedFactory<Cipher>> cipherFactories)
void
KexFactoryManager. setCipherFactories(List<NamedFactory<Cipher>> cipherFactories)
void
AbstractKexFactoryManager. setCompressionFactories(List<NamedFactory<Compression>> compressionFactories)
void
KexFactoryManager. setCompressionFactories(List<NamedFactory<Compression>> compressionFactories)
void
AbstractKexFactoryManager. setMacFactories(List<NamedFactory<Mac>> macFactories)
void
KexFactoryManager. setMacFactories(List<NamedFactory<Mac>> macFactories)
void
AbstractKexFactoryManager. setSignatureFactories(List<NamedFactory<Signature>> signatureFactories)
-
Uses of NamedFactory in org.apache.sshd.common.kex.extension
Methods in org.apache.sshd.common.kex.extension that return NamedFactory Modifier and Type Method Description NamedFactory<Signature>
DefaultClientKexExtensionHandler. resolveRequestedSignatureFactory(Session session, String name)
Methods in org.apache.sshd.common.kex.extension that return types with arguments of type NamedFactory Modifier and Type Method Description List<NamedFactory<Signature>>
DefaultClientKexExtensionHandler. resolveRequestedSignatureFactories(Session session, Collection<String> extraAlgos)
List<NamedFactory<Signature>>
DefaultClientKexExtensionHandler. resolveUpdatedSignatureFactories(Session session, List<NamedFactory<Signature>> available, Collection<String> extraAlgos)
Checks if the extra signature algorithms are already included in the available ones, and adds the extra ones (if supported).List<NamedFactory<Signature>>
DefaultClientKexExtensionHandler. updateAvailableSignatureFactories(Session session, Collection<String> extraAlgos)
List<NamedFactory<Signature>>
DefaultClientKexExtensionHandler. updateAvailableSignatureFactories(Session session, List<NamedFactory<Signature>> available, Collection<? extends NamedFactory<Signature>> toAdd)
Methods in org.apache.sshd.common.kex.extension with parameters of type NamedFactory Modifier and Type Method Description int
DefaultClientKexExtensionHandler. resolvePreferredSignaturePosition(Session session, List<? extends NamedFactory<Signature>> factories, NamedFactory<Signature> factory)
Method parameters in org.apache.sshd.common.kex.extension with type arguments of type NamedFactory Modifier and Type Method Description int
DefaultClientKexExtensionHandler. resolvePreferredSignaturePosition(Session session, List<? extends NamedFactory<Signature>> factories, NamedFactory<Signature> factory)
List<NamedFactory<Signature>>
DefaultClientKexExtensionHandler. resolveUpdatedSignatureFactories(Session session, List<NamedFactory<Signature>> available, Collection<String> extraAlgos)
Checks if the extra signature algorithms are already included in the available ones, and adds the extra ones (if supported).List<NamedFactory<Signature>>
DefaultClientKexExtensionHandler. updateAvailableSignatureFactories(Session session, List<NamedFactory<Signature>> available, Collection<? extends NamedFactory<Signature>> toAdd)
List<NamedFactory<Signature>>
DefaultClientKexExtensionHandler. updateAvailableSignatureFactories(Session session, List<NamedFactory<Signature>> available, Collection<? extends NamedFactory<Signature>> toAdd)
-
Uses of NamedFactory in org.apache.sshd.common.mac
Subinterfaces of NamedFactory in org.apache.sshd.common.mac Modifier and Type Interface Description interface
MacFactory
Classes in org.apache.sshd.common.mac that implement NamedFactory Modifier and Type Class Description class
BuiltinMacs
Provides easy access to the currently implemented macsMethods in org.apache.sshd.common.mac with parameters of type NamedFactory Modifier and Type Method Description static BuiltinMacs
BuiltinMacs. fromFactory(NamedFactory<Mac> factory)
-
Uses of NamedFactory in org.apache.sshd.common.random
Subinterfaces of NamedFactory in org.apache.sshd.common.random Modifier and Type Interface Description interface
RandomFactory
Classes in org.apache.sshd.common.random that implement NamedFactory Modifier and Type Class Description class
AbstractRandomFactory
class
JceRandomFactory
Named factory for the JCERandom
class
SingletonRandomFactory
A random factory wrapper that uses a single random instance.Constructors in org.apache.sshd.common.random with parameters of type NamedFactory Constructor Description SingletonRandomFactory(NamedFactory<Random> factory)
-
Uses of NamedFactory in org.apache.sshd.common.signature
Subinterfaces of NamedFactory in org.apache.sshd.common.signature Modifier and Type Interface Description interface
SignatureFactory
Classes in org.apache.sshd.common.signature that implement NamedFactory Modifier and Type Class Description class
BuiltinSignatures
Provides easy access to the currently implemented signaturesMethods in org.apache.sshd.common.signature that return types with arguments of type NamedFactory Modifier and Type Method Description List<NamedFactory<Signature>>
SignatureFactoriesManager. getSignatureFactories()
static List<NamedFactory<Signature>>
SignatureFactoriesManager. getSignatureFactories(SignatureFactoriesManager manager)
static List<NamedFactory<Signature>>
SignatureFactoriesManager. resolveSignatureFactories(SignatureFactoriesManager primary, SignatureFactoriesManager secondary)
Attempts to use the primary manager's signature factories if notnull
/empty, otherwise uses the secondary ones (regardless of whether there are any...)Methods in org.apache.sshd.common.signature with parameters of type NamedFactory Modifier and Type Method Description static BuiltinSignatures
BuiltinSignatures. fromFactory(NamedFactory<Signature> factory)
static int
SignatureFactory. resolvePreferredSignaturePosition(List<? extends NamedFactory<Signature>> factories, NamedFactory<Signature> factory)
Method parameters in org.apache.sshd.common.signature with type arguments of type NamedFactory Modifier and Type Method Description static int
SignatureFactory. resolvePreferredSignaturePosition(List<? extends NamedFactory<Signature>> factories, NamedFactory<Signature> factory)
static List<String>
SignatureFactory. resolveSignatureFactoriesProposal(Iterable<String> provided, Collection<? extends NamedFactory<Signature>> factories)
void
SignatureFactoriesManager. setSignatureFactories(List<NamedFactory<Signature>> factories)
-
Uses of NamedFactory in org.apache.sshd.common.util.security.bouncycastle
Classes in org.apache.sshd.common.util.security.bouncycastle that implement NamedFactory Modifier and Type Class Description class
BouncyCastleRandomFactory
Named factory for the BouncyCastleRandom
-
Uses of NamedFactory in org.apache.sshd.server
Methods in org.apache.sshd.server that return types with arguments of type NamedFactory Modifier and Type Method Description static List<NamedFactory<Compression>>
ServerBuilder. setUpDefaultCompressionFactories(boolean ignoreUnsupported)
static List<NamedFactory<Signature>>
ServerBuilder. setUpDefaultSignatureFactories(boolean ignoreUnsupported)
-
Uses of NamedFactory in org.apache.sshd.server.auth
Classes in org.apache.sshd.server.auth that implement NamedFactory Modifier and Type Class Description class
BuiltinUserAuthFactories
Provides a centralized location for the default built-in authentication factories -
Uses of NamedFactory in org.apache.sshd.server.auth.hostbased
Methods in org.apache.sshd.server.auth.hostbased that return types with arguments of type NamedFactory Modifier and Type Method Description List<NamedFactory<Signature>>
UserAuthHostBased. getSignatureFactories()
List<NamedFactory<Signature>>
UserAuthHostBasedFactory. getSignatureFactories()
Method parameters in org.apache.sshd.server.auth.hostbased with type arguments of type NamedFactory Modifier and Type Method Description void
UserAuthHostBased. setSignatureFactories(List<NamedFactory<Signature>> factories)
void
UserAuthHostBasedFactory. setSignatureFactories(List<NamedFactory<Signature>> factories)
Constructor parameters in org.apache.sshd.server.auth.hostbased with type arguments of type NamedFactory Constructor Description UserAuthHostBased(List<NamedFactory<Signature>> factories)
UserAuthHostBasedFactory(List<NamedFactory<Signature>> factories)
-
Uses of NamedFactory in org.apache.sshd.server.auth.pubkey
Methods in org.apache.sshd.server.auth.pubkey that return types with arguments of type NamedFactory Modifier and Type Method Description List<NamedFactory<Signature>>
UserAuthPublicKey. getSignatureFactories()
List<NamedFactory<Signature>>
UserAuthPublicKeyFactory. getSignatureFactories()
Method parameters in org.apache.sshd.server.auth.pubkey with type arguments of type NamedFactory Modifier and Type Method Description void
UserAuthPublicKey. setSignatureFactories(List<NamedFactory<Signature>> factories)
void
UserAuthPublicKeyFactory. setSignatureFactories(List<NamedFactory<Signature>> factories)
Constructor parameters in org.apache.sshd.server.auth.pubkey with type arguments of type NamedFactory Constructor Description UserAuthPublicKey(List<NamedFactory<Signature>> factories)
UserAuthPublicKeyFactory(List<NamedFactory<Signature>> factories)
-
Uses of NamedFactory in org.apache.sshd.server.global
Methods in org.apache.sshd.server.global that return types with arguments of type NamedFactory Modifier and Type Method Description List<NamedFactory<Signature>>
OpenSshHostKeysHandler. getSignatureFactories()
Method parameters in org.apache.sshd.server.global with type arguments of type NamedFactory Modifier and Type Method Description void
OpenSshHostKeysHandler. setSignatureFactories(List<NamedFactory<Signature>> factories)
-
Uses of NamedFactory in org.apache.sshd.server.subsystem.sftp
Methods in org.apache.sshd.server.subsystem.sftp with parameters of type NamedFactory Modifier and Type Method Description protected void
AbstractSftpSubsystemHelper. doCheckFileHash(int id, Path file, NamedFactory<? extends Digest> factory, long startOffset, long length, int blockSize, Buffer buffer)
-