Package | Description |
---|---|
org.apache.sshd.server.auth | |
org.apache.sshd.server.auth.password | |
org.apache.sshd.server.auth.pubkey |
Modifier and Type | Method and Description |
---|---|
java.lang.Boolean |
UserAuth.auth(ServerSession session,
java.lang.String username,
java.lang.String service,
Buffer buffer)
Try to authenticate the user.
|
java.lang.Boolean |
UserAuth.next(Buffer buffer)
Handle another step in the authentication process.
|
Modifier and Type | Method and Description |
---|---|
boolean |
PasswordAuthenticator.authenticate(java.lang.String username,
java.lang.String password,
ServerSession session)
Check the validity of a password.
|
Modifier and Type | Method and Description |
---|---|
boolean |
PublickeyAuthenticator.authenticate(java.lang.String username,
java.security.PublicKey key,
ServerSession session)
Check the validity of a public key.
|