Uses of Interface
net.schmizz.sshj.userauth.password.PasswordFinder
-
-
Uses of PasswordFinder in com.hierynomus.sshj.userauth.keyprovider
Methods in com.hierynomus.sshj.userauth.keyprovider with parameters of type PasswordFinder Modifier and Type Method Description voidOpenSSHKeyV1KeyFile. init(java.io.File location, PasswordFinder pwdf)voidOpenSSHKeyV1KeyFile. init(java.io.Reader privateKey, java.io.Reader publicKey, PasswordFinder pwdf)voidOpenSSHKeyV1KeyFile. init(java.lang.String privateKey, java.lang.String publicKey, PasswordFinder pwdf) -
Uses of PasswordFinder in net.schmizz.sshj
Methods in net.schmizz.sshj with parameters of type PasswordFinder Modifier and Type Method Description voidSSHClient. authPassword(java.lang.String username, PasswordFinder pfinder)Authenticateusernameusing the"password"authentication method and as a fallback basic challenge-response authentication.voidSSHClient. authPassword(java.lang.String username, PasswordFinder pfinder, PasswordUpdateProvider newPasswordProvider)Authenticateusernameusing the"password"authentication method and as a fallback basic challenge-response authentication.KeyProviderSSHClient. loadKeys(java.lang.String privateKey, java.lang.String publicKey, PasswordFinder passwordFinder)Creates aKeyProviderinstance from passed strings.KeyProviderSSHClient. loadKeys(java.lang.String location, PasswordFinder passwordFinder)Creates aKeyProviderinstance 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 PasswordFinder Modifier and Type Field Description private PasswordFinderEncryptedPEMKeyReader. passwordFinderprotected PasswordFinderBaseFileKeyProvider. pwdfMethods in net.schmizz.sshj.userauth.keyprovider with parameters of type PasswordFinder Modifier and Type Method Description voidBaseFileKeyProvider. init(java.io.File location, PasswordFinder pwdf)voidBaseFileKeyProvider. init(java.io.Reader privateKey, java.io.Reader publicKey, PasswordFinder pwdf)voidBaseFileKeyProvider. init(java.io.Reader location, PasswordFinder pwdf)voidBaseFileKeyProvider. init(java.lang.String privateKey, java.lang.String publicKey, PasswordFinder pwdf)voidFileKeyProvider. init(java.io.File location, PasswordFinder pwdf)voidFileKeyProvider. init(java.io.Reader privateKey, java.io.Reader publicKey, PasswordFinder pwdf)voidFileKeyProvider. init(java.io.Reader location, PasswordFinder pwdf)voidFileKeyProvider. init(java.lang.String privateKey, java.lang.String publicKey, PasswordFinder pwdf)voidOpenSSHKeyFile. init(java.io.File location, PasswordFinder pwdf)voidOpenSSHKeyFile. init(java.io.Reader privateKey, java.io.Reader publicKey, PasswordFinder pwdf)voidOpenSSHKeyFile. init(java.lang.String privateKey, java.lang.String publicKey, PasswordFinder pwdf)Constructors in net.schmizz.sshj.userauth.keyprovider with parameters of type PasswordFinder Constructor Description EncryptedPEMKeyReader(PasswordFinder passwordFinder, Resource<?> resource) -
Uses of PasswordFinder in net.schmizz.sshj.userauth.method
Fields in net.schmizz.sshj.userauth.method declared as PasswordFinder Modifier and Type Field Description private PasswordFinderAuthPassword. pwdfprivate PasswordFinderPasswordResponseProvider. pwdfConstructors in net.schmizz.sshj.userauth.method with parameters of type PasswordFinder Constructor Description AuthPassword(PasswordFinder pwdf)AuthPassword(PasswordFinder pwdf, PasswordUpdateProvider newPasswordProvider)PasswordResponseProvider(PasswordFinder pwdf)PasswordResponseProvider(PasswordFinder pwdf, java.util.regex.Pattern promptPattern)PasswordResponseProvider(PasswordFinder pwdf, java.util.regex.Pattern promptPattern, LoggerFactory loggerFactory) -
Uses of PasswordFinder in net.schmizz.sshj.userauth.password
Classes in net.schmizz.sshj.userauth.password that implement PasswordFinder Modifier and Type Class Description classConsolePasswordFinderA PasswordFinder that reads a password from a consoleMethods in net.schmizz.sshj.userauth.password that return PasswordFinder Modifier and Type Method Description static PasswordFinderPasswordUtils. createOneOff(char[] password)
-