diff options
author | Helmut Grohne <helmut@subdivi.de> | 2008-10-14 13:57:42 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2008-10-14 13:57:42 +0200 |
commit | 8dd58e7ee12fe839806240d0de74efd33106976c (patch) | |
tree | 17e7168ddcd8d85d05f643837b19e5a674e00c18 /wsgitools/digest.py | |
parent | 79ac8a24be0513a64d0049763a412a9cfd16d9a4 (diff) | |
download | wsgitools-8dd58e7ee12fe839806240d0de74efd33106976c.tar.gz |
update docstring: DigestAuth now partly works with forkpool
Diffstat (limited to 'wsgitools/digest.py')
-rwxr-xr-x | wsgitools/digest.py | 5 |
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): """ |