| java.lang.Object org.mortbay.jetty.security.DigestAuthenticator
DigestAuthenticator | public class DigestAuthenticator implements Authenticator(Code) | | DIGEST authentication.
author: Greg Wilkins (gregw) |
maxNonceAge | protected long maxNonceAge(Code) | | |
nonceSecret | protected long nonceSecret(Code) | | |
useStale | protected boolean useStale(Code) | | |
checkNonce | public int checkNonce(String nonce, Request request)(Code) | | Parameters: nonce - Parameters: request - -1 for a bad nonce, 0 for a stale none, 1 for a good nonce |
getMaxNonceAge | public long getMaxNonceAge()(Code) | | Returns the maxNonceAge. |
getNonceSecret | public long getNonceSecret()(Code) | | Returns the nonceSecret. |
getUseStale | public boolean getUseStale()(Code) | | |
setMaxNonceAge | public void setMaxNonceAge(long maxNonceAge)(Code) | | Parameters: maxNonceAge - The maxNonceAge to set. |
setNonceSecret | public void setNonceSecret(long nonceSecret)(Code) | | Parameters: nonceSecret - The nonceSecret to set. |
setUseStale | public void setUseStale(boolean us)(Code) | | |
|
|