Uses of Interface
net.schmizz.sshj.userauth.password.PasswordFinder
Packages that use PasswordFinder
Package
Description
-
Uses of PasswordFinder in com.hierynomus.sshj.userauth.keyprovider
Methods in com.hierynomus.sshj.userauth.keyprovider with parameters of type PasswordFinderModifier and TypeMethodDescriptionvoid
OpenSSHKeyV1KeyFile.init
(File location, PasswordFinder pwdf) void
OpenSSHKeyV1KeyFile.init
(Reader privateKey, Reader publicKey, PasswordFinder pwdf) void
OpenSSHKeyV1KeyFile.init
(String privateKey, String publicKey, PasswordFinder pwdf) -
Uses of PasswordFinder in net.schmizz.sshj
Methods in net.schmizz.sshj with parameters of type PasswordFinderModifier and TypeMethodDescriptionvoid
SSHClient.authPassword
(String username, PasswordFinder pfinder) Authenticateusername
using the"password"
authentication method and as a fallback basic challenge-response authentication.void
SSHClient.authPassword
(String username, PasswordFinder pfinder, PasswordUpdateProvider newPasswordProvider) Authenticateusername
using the"password"
authentication method and as a fallback basic challenge-response authentication.SSHClient.loadKeys
(String privateKey, String publicKey, PasswordFinder passwordFinder) Creates aKeyProvider
instance from passed strings.SSHClient.loadKeys
(String location, PasswordFinder passwordFinder) Creates aKeyProvider
instance from given location on the file system. -
Uses of PasswordFinder in net.schmizz.sshj.userauth.keyprovider
Fields in net.schmizz.sshj.userauth.keyprovider declared as PasswordFinderMethods in net.schmizz.sshj.userauth.keyprovider with parameters of type PasswordFinderModifier and TypeMethodDescriptionvoid
BaseFileKeyProvider.init
(File location, PasswordFinder pwdf) void
BaseFileKeyProvider.init
(Reader privateKey, Reader publicKey, PasswordFinder pwdf) void
BaseFileKeyProvider.init
(Reader location, PasswordFinder pwdf) void
BaseFileKeyProvider.init
(String privateKey, String publicKey, PasswordFinder pwdf) void
FileKeyProvider.init
(File location, PasswordFinder pwdf) void
FileKeyProvider.init
(Reader privateKey, Reader publicKey, PasswordFinder pwdf) void
FileKeyProvider.init
(Reader location, PasswordFinder pwdf) void
FileKeyProvider.init
(String privateKey, String publicKey, PasswordFinder pwdf) void
OpenSSHKeyFile.init
(File location, PasswordFinder pwdf) void
OpenSSHKeyFile.init
(Reader privateKey, Reader publicKey, PasswordFinder pwdf) void
OpenSSHKeyFile.init
(String privateKey, String publicKey, PasswordFinder pwdf) -
Uses of PasswordFinder in net.schmizz.sshj.userauth.method
Fields in net.schmizz.sshj.userauth.method declared as PasswordFinderModifier and TypeFieldDescriptionprivate final PasswordFinder
AuthPassword.pwdf
private final PasswordFinder
PasswordResponseProvider.pwdf
Constructors in net.schmizz.sshj.userauth.method with parameters of type PasswordFinderModifierConstructorDescriptionAuthPassword
(PasswordFinder pwdf) AuthPassword
(PasswordFinder pwdf, PasswordUpdateProvider newPasswordProvider) PasswordResponseProvider
(PasswordFinder pwdf, Pattern promptPattern) PasswordResponseProvider
(PasswordFinder pwdf, Pattern promptPattern, LoggerFactory loggerFactory) -
Uses of PasswordFinder in net.schmizz.sshj.userauth.password
Classes in net.schmizz.sshj.userauth.password that implement PasswordFinderModifier and TypeClassDescriptionclass
A PasswordFinder that reads a password from a consoleMethods in net.schmizz.sshj.userauth.password that return PasswordFinderModifier and TypeMethodDescriptionstatic PasswordFinder
PasswordUtils.createOneOff
(char[] password)