Uses of Class
net.schmizz.sshj.userauth.UserAuthException
Packages that use UserAuthException
-
Uses of UserAuthException in net.schmizz.sshj
Methods in net.schmizz.sshj that throw UserAuthExceptionModifier and TypeMethodDescriptionvoidSSHClient.auth(String username, Iterable<AuthMethod> methods) Authenticateusernameusing the suppliedmethods.voidSSHClient.auth(String username, AuthMethod... methods) Authenticateusernameusing the suppliedmethods.voidSSHClient.authGssApiWithMic(String username, LoginContext context, Oid supportedOid, 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(String username, char[] password) Authenticateusernameusing the"password"authentication method and as a fallback basic challenge-response authentication..voidSSHClient.authPassword(String username, String password) Authenticateusernameusing the"password"authentication method and as a fallback basic challenge-response authentication.voidSSHClient.authPassword(String username, PasswordFinder pfinder) Authenticateusernameusing the"password"authentication method and as a fallback basic challenge-response authentication.voidSSHClient.authPassword(String username, PasswordFinder pfinder, PasswordUpdateProvider newPasswordProvider) Authenticateusernameusing the"password"authentication method and as a fallback basic challenge-response authentication.voidSSHClient.authPublickey(String username) Authenticateusernameusing the"publickey"authentication method, with keys from some common locations on the file system.voidSSHClient.authPublickey(String username, Iterable<KeyProvider> keyProviders) Authenticateusernameusing the"publickey"authentication method.voidSSHClient.authPublickey(String username, String... locations) Authenticateusernameusing the"publickey"authentication method, with keys from one or morelocationsin the file system.voidSSHClient.authPublickey(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 UserAuthExceptionModifier and TypeFieldDescriptionprivate final Promise<Boolean, UserAuthException> UserAuthImpl.authenticatedstatic final ExceptionChainer<UserAuthException> UserAuthException.chainerMethods in net.schmizz.sshj.userauth that throw UserAuthExceptionModifier and TypeMethodDescriptionbooleanUserAuth.authenticate(String username, Service nextService, AuthMethod methods, int timeoutMs) Attempt to authenticateusernameusing each ofmethodsin order.booleanUserAuthImpl.authenticate(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 UserAuthExceptionModifier and TypeMethodDescriptionprotected SSHPacketAbstractAuthMethod.buildReq()Builds aSSHPacketcontaining the fields common to all authentication method.AuthGssApiWithMic.buildReq()protected SSHPacketAuthHostbased.buildReq()AuthKeyboardInteractive.buildReq()AuthPassword.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()voidvoidvoidvoidvoidInternal use.private voidAuthGssApiWithMic.handleContextInitialization(SSHPacket buf) private byte[]AuthGssApiWithMic.handleTokenFromServer(SSHPacket buf) protected SSHPacketprotected SSHPacketvoidAbstractAuthMethod.request()voidAuthMethod.request()private voidAuthPublickey.sendSignedReq()Send SSH_MSG_USERAUTH_REQUEST containing the signature.