Uses of Class
net.schmizz.sshj.userauth.UserAuthException
-
Packages that use UserAuthException Package Description net.schmizz.sshj net.schmizz.sshj.userauth net.schmizz.sshj.userauth.method -
-
Uses of UserAuthException in net.schmizz.sshj
Methods in net.schmizz.sshj that throw UserAuthException Modifier and Type Method Description voidSSHClient. auth(java.lang.String username, java.lang.Iterable<AuthMethod> methods)Authenticateusernameusing the suppliedmethods.voidSSHClient. auth(java.lang.String username, AuthMethod... methods)Authenticateusernameusing the suppliedmethods.voidSSHClient. authGssApiWithMic(java.lang.String username, javax.security.auth.login.LoginContext context, org.ietf.jgss.Oid supportedOid, org.ietf.jgss.Oid... supportedOids)Authenticateusernameusing the"gssapi-with-mic"authentication method, given a login context for the peer GSS machine and a list of supported OIDs.voidSSHClient. authPassword(java.lang.String username, char[] password)Authenticateusernameusing the"password"authentication method and as a fallback basic challenge-response authentication..voidSSHClient. authPassword(java.lang.String username, java.lang.String password)Authenticateusernameusing the"password"authentication method and as a fallback basic challenge-response authentication.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.voidSSHClient. authPublickey(java.lang.String username)Authenticateusernameusing the"publickey"authentication method, with keys from some common locations on the file system.voidSSHClient. authPublickey(java.lang.String username, java.lang.Iterable<KeyProvider> keyProviders)Authenticateusernameusing the"publickey"authentication method.voidSSHClient. authPublickey(java.lang.String username, java.lang.String... locations)Authenticateusernameusing the"publickey"authentication method, with keys from one or morelocationsin the file system.voidSSHClient. authPublickey(java.lang.String username, KeyProvider... keyProviders)Authenticateusernameusing the"publickey"authentication method. -
Uses of UserAuthException in net.schmizz.sshj.userauth
Fields in net.schmizz.sshj.userauth with type parameters of type UserAuthException Modifier and Type Field Description private Promise<java.lang.Boolean,UserAuthException>UserAuthImpl. authenticatedstatic ExceptionChainer<UserAuthException>UserAuthException. chainerMethods in net.schmizz.sshj.userauth that throw UserAuthException Modifier and Type Method Description booleanUserAuth. authenticate(java.lang.String username, Service nextService, AuthMethod methods, int timeoutMs)Attempt to authenticateusernameusing each ofmethodsin order.booleanUserAuthImpl. authenticate(java.lang.String username, Service nextService, AuthMethod method, int timeoutMs) -
Uses of UserAuthException in net.schmizz.sshj.userauth.method
Methods in net.schmizz.sshj.userauth.method that throw UserAuthException Modifier and Type Method Description protected SSHPacketAbstractAuthMethod. buildReq()Builds aSSHPacketcontaining the fields common to all authentication method.SSHPacketAuthGssApiWithMic. buildReq()protected SSHPacketAuthHostbased. buildReq()SSHPacketAuthKeyboardInteractive. buildReq()SSHPacketAuthPassword. buildReq()protected SSHPacketAuthPublickey. buildReq()Builds a feeler request (sans signature).private SSHPacketAuthPublickey. buildReq(boolean signed)Builds SSH_MSG_USERAUTH_REQUEST packet.private byte[]AuthGssApiWithMic. generateMIC()voidAbstractAuthMethod. handle(Message msg, SSHPacket buf)voidAuthGssApiWithMic. handle(Message cmd, SSHPacket buf)voidAuthKeyboardInteractive. handle(Message cmd, SSHPacket buf)voidAuthPassword. handle(Message cmd, SSHPacket buf)voidAuthPublickey. handle(Message cmd, SSHPacket buf)Internal use.private voidAuthGssApiWithMic. handleContextInitialization(SSHPacket buf)private byte[]AuthGssApiWithMic. handleTokenFromServer(SSHPacket buf)protected SSHPacketKeyedAuthMethod. putPubKey(SSHPacket reqBuf)protected SSHPacketKeyedAuthMethod. putSig(SSHPacket reqBuf)voidAbstractAuthMethod. request()voidAuthMethod. request()private voidAuthPublickey. sendSignedReq()Send SSH_MSG_USERAUTH_REQUEST containing the signature.
-