DigestAuth
Provides Digest Authentication from RFC 2617.
Type members
Types
A function mapping username to a user object and password, or None if no user exists. Requires that the server can recover the password in clear text, which is strongly discouraged.
A function mapping username to a user object and password, or None if no user exists. Requires that the server can recover the password in clear text, which is strongly discouraged.
Value members
Concrete methods
- Value parameters:
- nonceBits
The number of random bits a nonce should consist of.
- nonceCleanupInterval
Interval (in milliseconds) at which stale nonces should be cleaned up.
- nonceStaleTime
Amount of time (in milliseconds) after which a nonce is considered stale (i.e. not used for authentication purposes anymore).
- realm
The realm used for authentication purposes.
- store
A partial function mapping (realm, user) to the appropriate password.