public class PasswordAuthentication extends Object implements AuthenticationMechanism
AuthenticationMechanism that enables the standard SSH
password authentication.| Modifier and Type | Field and Description |
|---|---|
static String |
AUTHENTICATION_METHOD |
| Constructor and Description |
|---|
PasswordAuthentication()
Construct an instance.
|
PasswordAuthentication(TransportProtocol transport,
AuthenticationProtocol authentication,
Connection con,
PasswordAuthenticationProvider[] providers) |
| Modifier and Type | Method and Description |
|---|---|
String |
getMethod()
Return the SSH method name for this authentication.
|
boolean |
hasProviders() |
boolean |
processMessage(byte[] msg)
If the SSH protocol authentication method defines additional messages
which are sent from the client, they will be passed into your
implementation here when received.
|
boolean |
startRequest(String username,
byte[] msg)
Start an authentication transaction.
|
public static final String AUTHENTICATION_METHOD
public PasswordAuthentication()
public PasswordAuthentication(TransportProtocol transport, AuthenticationProtocol authentication, Connection con, PasswordAuthenticationProvider[] providers)
public boolean hasProviders()
public String getMethod()
AuthenticationMechanismgetMethod in interface AuthenticationMechanismpublic boolean startRequest(String username, byte[] msg) throws IOException
AuthenticationMechanismAuthenticationProtocol instance that was passed
in the initialization process. The request data varies according to the
authentication method.
if (success)
authentication.completedAuthentication(method, username, service);
else
authentication.failedAuthentication(method);
startRequest in interface AuthenticationMechanismmsg - the request data from the SSH_MSG_USERAUTH_REQUEST messageIOExceptionpublic boolean processMessage(byte[] msg)
throws IOException
AuthenticationMechanismprocessMessage in interface AuthenticationMechanismIOExceptionCopyright © 2025. All rights reserved.