Interface HostBasedAuthenticator
- All Known Implementing Classes:
AcceptAllHostBasedAuthenticator,RejectAllHostBasedAuthenticator,StaticHostBasedAuthenticator
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Invoked when "hostbased" authentication is used
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanauthenticate(ServerSession session, String username, PublicKey clientHostKey, String clientHostName, String clientUsername, List<X509Certificate> certificates)
-
Method Details
-
authenticate
boolean authenticate(ServerSession session, String username, PublicKey clientHostKey, String clientHostName, String clientUsername, List<X509Certificate> certificates) - Parameters:
session- TheServerSessionthrough which the request was receivedusername- The username attempting to loginclientHostKey- The remote client's hostPublicKeyclientHostName- The reported remote client's host nameclientUsername- The remote client usernamecertificates- AssociatedX509Certificates - may benull/empty- Returns:
truewhether authentication is allowed to proceed
-