Class DigestAuthenticator
- java.lang.Object
-
- org.eclipse.jetty.security.authentication.LoginAuthenticator
-
- org.eclipse.jetty.security.authentication.DigestAuthenticator
-
- All Implemented Interfaces:
Authenticator
public class DigestAuthenticator extends LoginAuthenticator
The nonce max age in ms can be set with theSecurityHandler.setInitParameter(String, String)using the name "maxNonceAge". The nonce max count can be set withSecurityHandler.setInitParameter(String, String)using the name "maxNonceCount". When the age or count is exceeded, the nonce is considered stale.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classDigestAuthenticator.Digestprivate static classDigestAuthenticator.Nonce-
Nested classes/interfaces inherited from interface org.eclipse.jetty.security.Authenticator
Authenticator.AuthConfiguration, Authenticator.Factory
-
-
Field Summary
Fields Modifier and Type Field Description private int_maxNCprivate long_maxNonceAgeMsprivate java.util.concurrent.ConcurrentMap<java.lang.String,DigestAuthenticator.Nonce>_nonceMapprivate java.util.Queue<DigestAuthenticator.Nonce>_nonceQueueprivate java.security.SecureRandom_randomprivate static LoggerLOG-
Fields inherited from class org.eclipse.jetty.security.authentication.LoginAuthenticator
_identityService, _loginService
-
-
Constructor Summary
Constructors Constructor Description DigestAuthenticator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private intcheckNonce(DigestAuthenticator.Digest digest, Request request)java.lang.StringgetAuthMethod()longgetMaxNonceAge()intgetMaxNonceCount()UserIdentitylogin(java.lang.String username, java.lang.Object credentials, javax.servlet.ServletRequest request)If the UserIdentity is not null after this method callsLoginService.login(String, Object, ServletRequest), it is assumed that the user is fully authenticated and we need to change the session id to prevent session fixation vulnerability.java.lang.StringnewNonce(Request request)booleansecureResponse(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory, Authentication.User validatedUser)is response securevoidsetConfiguration(Authenticator.AuthConfiguration configuration)Configure the AuthenticatorvoidsetMaxNonceAge(long maxNonceAgeInMillis)voidsetMaxNonceCount(int maxNC)AuthenticationvalidateRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory)Validate a request-
Methods inherited from class org.eclipse.jetty.security.authentication.LoginAuthenticator
getLoginService, logout, prepareRequest, renewSession
-
-
-
-
Field Detail
-
LOG
private static final Logger LOG
-
_random
private final java.security.SecureRandom _random
-
_maxNonceAgeMs
private long _maxNonceAgeMs
-
_maxNC
private int _maxNC
-
_nonceMap
private java.util.concurrent.ConcurrentMap<java.lang.String,DigestAuthenticator.Nonce> _nonceMap
-
_nonceQueue
private java.util.Queue<DigestAuthenticator.Nonce> _nonceQueue
-
-
Method Detail
-
setConfiguration
public void setConfiguration(Authenticator.AuthConfiguration configuration)
Description copied from interface:AuthenticatorConfigure the Authenticator- Specified by:
setConfigurationin interfaceAuthenticator- Overrides:
setConfigurationin classLoginAuthenticator- Parameters:
configuration- the configuration
-
getMaxNonceCount
public int getMaxNonceCount()
-
setMaxNonceCount
public void setMaxNonceCount(int maxNC)
-
getMaxNonceAge
public long getMaxNonceAge()
-
setMaxNonceAge
public void setMaxNonceAge(long maxNonceAgeInMillis)
-
getAuthMethod
public java.lang.String getAuthMethod()
- Returns:
- The name of the authentication method
-
secureResponse
public boolean secureResponse(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory, Authentication.User validatedUser) throws ServerAuthExceptionDescription copied from interface:Authenticatoris response secure- Parameters:
req- the requestres- the responsemandatory- if security is mandatorvalidatedUser- the user that was validated- Returns:
- true if response is secure
- Throws:
ServerAuthException- if unable to test response
-
validateRequest
public Authentication validateRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory) throws ServerAuthException
Description copied from interface:AuthenticatorValidate a request- Parameters:
req- The requestres- The responsemandatory- True if authentication is mandatory.- Returns:
- An Authentication. If Authentication is successful, this will be a
Authentication.User. If a response has been sent by the Authenticator (which can be done for both successful and unsuccessful authentications), then the result will implementAuthentication.ResponseSent. If Authentication is not mandatory, then aAuthentication.Deferredmay be returned. - Throws:
ServerAuthException- if unable to validate request
-
login
public UserIdentity login(java.lang.String username, java.lang.Object credentials, javax.servlet.ServletRequest request)
Description copied from class:LoginAuthenticatorIf the UserIdentity is not null after this method callsLoginService.login(String, Object, ServletRequest), it is assumed that the user is fully authenticated and we need to change the session id to prevent session fixation vulnerability. If the UserIdentity is not necessarily fully authenticated, then subclasses must override this method and determine when the UserIdentity IS fully authenticated and renew the session id.- Overrides:
loginin classLoginAuthenticator- Parameters:
username- the username of the client to be authenticatedcredentials- the user's credentialrequest- the inbound request that needs authentication
-
newNonce
public java.lang.String newNonce(Request request)
-
checkNonce
private int checkNonce(DigestAuthenticator.Digest digest, Request request)
- Parameters:
digest- the digest data to checkrequest- the request object- Returns:
- -1 for a bad nonce, 0 for a stale none, 1 for a good nonce
-
-