Uses of Interface
org.eclipse.jgit.transport.sshd.ServerKeyDatabase
Packages that use ServerKeyDatabase
-
Uses of ServerKeyDatabase in org.eclipse.jgit.internal.transport.sshd
Classes in org.eclipse.jgit.internal.transport.sshd that implement ServerKeyDatabaseModifier and TypeClassDescriptionclass
A sever host key verifier that honors theStrictHostKeyChecking
andUserKnownHostsFile
values from the ssh configuration.Fields in org.eclipse.jgit.internal.transport.sshd declared as ServerKeyDatabaseConstructors in org.eclipse.jgit.internal.transport.sshd with parameters of type ServerKeyDatabaseModifierConstructorDescriptionJGitServerKeyVerifier
(ServerKeyDatabase database) Creates a newJGitServerKeyVerifier
using the givenServerKeyDatabase
. -
Uses of ServerKeyDatabase in org.eclipse.jgit.transport.sshd
Fields in org.eclipse.jgit.transport.sshd with type parameters of type ServerKeyDatabaseModifier and TypeFieldDescriptionprivate final Map<SshdSessionFactory.Tuple,
ServerKeyDatabase> SshdSessionFactory.defaultServerKeyDatabase
(package private) BiFunction<File,
File, ServerKeyDatabase> SshdSessionFactoryBuilder.State.serverKeyDatabaseCreator
Methods in org.eclipse.jgit.transport.sshd that return ServerKeyDatabaseModifier and TypeMethodDescriptionprotected ServerKeyDatabase
SshdSessionFactory.createServerKeyDatabase
(File homeDir, File sshDir) Creates aServerKeyDatabase
to verify server host keys.protected ServerKeyDatabase
SshdSessionFactoryBuilder.State.SessionFactory.createServerKeyDatabase
(File homeDir, File sshDir) protected ServerKeyDatabase
SshdSessionFactory.getServerKeyDatabase
(File homeDir, File sshDir) Obtains aServerKeyDatabase
to verify server host keys.Method parameters in org.eclipse.jgit.transport.sshd with type arguments of type ServerKeyDatabaseModifier and TypeMethodDescriptionSshdSessionFactoryBuilder.setServerKeyDatabase
(BiFunction<File, File, ServerKeyDatabase> factory) Sets a function that creates a newServerKeyDatabase
, given the SSH and home directory.