Class StaticPublickeyAuthenticator
java.lang.Object
org.apache.sshd.common.util.logging.AbstractLoggingBean
org.apache.sshd.server.auth.pubkey.StaticPublickeyAuthenticator
- All Implemented Interfaces:
PublickeyAuthenticator
- Direct Known Subclasses:
AcceptAllPublickeyAuthenticator,RejectAllPublickeyAuthenticator
public abstract class StaticPublickeyAuthenticator
extends AbstractLoggingBean
implements PublickeyAuthenticator
Returns the same constant result
true/false regardless-
Field Summary
Fields inherited from class org.apache.sshd.common.util.logging.AbstractLoggingBean
log -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanauthenticate(String username, PublicKey key, ServerSession session) Checks whether the givenPublicKeyis allowed to be used for authenticating user "username" in a session.protected voidhandleAcceptance(String username, PublicKey key, ServerSession session) protected voidhandleRejection(String username, PublicKey key, ServerSession session) final boolean
-
Constructor Details
-
StaticPublickeyAuthenticator
protected StaticPublickeyAuthenticator(boolean acceptance)
-
-
Method Details
-
isAccepted
public final boolean isAccepted() -
authenticate
Description copied from interface:PublickeyAuthenticatorChecks whether the givenPublicKeyis allowed to be used for authenticating user "username" in a session.Note that the
keymay be aOpenSshCertificate. A typical implementation for a certificate would check that the certificate's CA key is known to be trusted as a certificate authority, and that the given user name is listed in the certificate's principals.- Specified by:
authenticatein interfacePublickeyAuthenticator- Parameters:
username- the usernamekey- the keysession- the server session- Returns:
trueif the key may be used;falseotherwise
-
handleAcceptance
-
handleRejection
-