Class AuthorizedKeyEntriesPublickeyAuthenticator
- java.lang.Object
-
- org.apache.sshd.common.util.logging.AbstractLoggingBean
-
- org.apache.sshd.server.auth.pubkey.AuthorizedKeyEntriesPublickeyAuthenticator
-
- All Implemented Interfaces:
PublickeyAuthenticator
public class AuthorizedKeyEntriesPublickeyAuthenticator extends AbstractLoggingBean implements PublickeyAuthenticator
Checks against aCollectionofAuthorizedKeyEntrys Records the matched entry under a session attribute.
-
-
Field Summary
Fields Modifier and Type Field Description static AttributeRepository.AttributeKey<AuthorizedKeyEntry>AUTHORIZED_KEY-
Fields inherited from class org.apache.sshd.common.util.logging.AbstractLoggingBean
log
-
-
Constructor Summary
Constructors Constructor Description AuthorizedKeyEntriesPublickeyAuthenticator(Object id, ServerSession session, Collection<? extends AuthorizedKeyEntry> entries, PublicKeyEntryResolver fallbackResolver)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanauthenticate(String username, PublicKey key, ServerSession session)Check the validity of a public key.ObjectgetId()StringtoString()
-
-
-
Field Detail
-
AUTHORIZED_KEY
public static final AttributeRepository.AttributeKey<AuthorizedKeyEntry> AUTHORIZED_KEY
-
-
Constructor Detail
-
AuthorizedKeyEntriesPublickeyAuthenticator
public AuthorizedKeyEntriesPublickeyAuthenticator(Object id, ServerSession session, Collection<? extends AuthorizedKeyEntry> entries, PublicKeyEntryResolver fallbackResolver) throws IOException, GeneralSecurityException
- Throws:
IOExceptionGeneralSecurityException
-
-
Method Detail
-
getId
public Object getId()
- Returns:
- Some kind of mnemonic identifier for the authenticator - used also in
toString()
-
authenticate
public boolean authenticate(String username, PublicKey key, ServerSession session)
Description copied from interface:PublickeyAuthenticatorCheck the validity of a public key.- Specified by:
authenticatein interfacePublickeyAuthenticator- Parameters:
username- the usernamekey- the keysession- the server session- Returns:
- a boolean indicating if authentication succeeded or not
-
-