Changeset 2034
- Timestamp:
- 08/20/08 12:18:28
- Files:
-
- trunk/cherrypy/lib/httpauth.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/lib/httpauth.py
r1891 r2034 276 276 H_A1 = H(_A1(params, password)) 277 277 278 if qop == "auth" or aop == "auth-int":278 if qop in ("auth", "auth-int"): 279 279 # If the "qop" value is "auth" or "auth-int": 280 280 # request-digest = <"> < KD ( H(A1), unq(nonce-value) … … 291 291 H_A2, 292 292 ) 293 294 293 elif qop is None: 295 294 # If the "qop" directive is not present (this construction is

