summaryrefslogtreecommitdiff
path: root/wsgitools/digest.py
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2008-10-14 13:57:42 +0200
committerHelmut Grohne <helmut@subdivi.de>2008-10-14 13:57:42 +0200
commit8dd58e7ee12fe839806240d0de74efd33106976c (patch)
tree17e7168ddcd8d85d05f643837b19e5a674e00c18 /wsgitools/digest.py
parent79ac8a24be0513a64d0049763a412a9cfd16d9a4 (diff)
downloadwsgitools-8dd58e7ee12fe839806240d0de74efd33106976c.tar.gz
update docstring: DigestAuth now partly works with forkpool
Diffstat (limited to 'wsgitools/digest.py')
-rwxr-xr-xwsgitools/digest.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/wsgitools/digest.py b/wsgitools/digest.py
index d85ea39..d57984d 100755
--- a/wsgitools/digest.py
+++ b/wsgitools/digest.py
@@ -309,10 +309,7 @@ class MemoryNonceStore(NonceStoreBase):
__all__.append("AuthDigestMiddleware")
class AuthDigestMiddleware:
- """Middleware partly implementing RFC2617. (md5-sess was omited)
- This middleware does not work with cgi servers or fork servers like
- scgi.forkpool.
- """
+ """Middleware partly implementing RFC2617. (md5-sess was omited)"""
algorithms = {"md5": lambda data: md5(data).hexdigest()}
def __init__(self, app, gentoken, maxage=300, maxuses=5, store=None):
"""