summaryrefslogtreecommitdiff
path: root/cherrypy/lib/auth.py
Commit message (Collapse)AuthorAgeFilesLines
* Drop deprecated basic_auth and digest_authSviatoslav Sydorenko2018-05-211-127/+0
| | | | | | Also remove ``httpauth`` module Resolves #1688
* Commit pre-commit fixes.Jason R. Coombs2018-02-041-2/+2
|
* Deprecate httpauth module. Ref #1688.Jason R. Coombs2018-01-131-1/+18
|
* Deprecate basic_auth and digest_auth tools. Ref #1688.Jason R. Coombs2018-01-131-0/+13
|
* Convert all strings to conform single-quoted styleSviatoslav Sydorenko2016-09-081-8/+8
| | | | pre-commit run double-quote-string-fixer --all-files
* More PEP8 work.Gustavo Picon2014-01-121-3/+6
|
* Running: autopep8 -vvvvv -i `find . -name '*.py'`Gustavo Picon2014-01-121-6/+13
| | | | | --HG-- branch : autopep8
* Removed trailing whitespace from the codebase.Gustavo Picon2012-04-031-16/+16
| | | | sed -i '' -e 's/ *$//' `find cherrypy -name '*.py'`
* Bye bye, py2/3.Robert Brewer2011-07-021-0/+87
|
* Bringing python3 back into trunk with its own py3 folder; what was in trunk ↵trunkRobert Brewer2011-02-251-87/+0
| | | | goes in the py2 folder, and we can use a single setup.py to install either, depending on the version of Python that runs setup.py install.
* Sphinx docs in cherrypy.lib.*chbrown2010-02-241-6/+14
|
* trunk: some merges from python3.Robert Brewer2009-08-111-1/+0
|
* Final fix for #915 (Add "debug=False" arg to builtin Tools).Robert Brewer2009-08-061-5/+9
|
* All internals now use cherrypy.serving.request/response instead of ↵Robert Brewer2009-06-221-9/+10
| | | | request/response for a speed boost.
* trunk - adding a py3util module that will normalize as many differences ↵Lakin Wecker2009-06-011-3/+3
| | | | between this branch and the python3 branch as it can. First it includes a py3print call who's signature matches that of print in python3. Also removed a few byte strings of the form b''
* Fix for #787 only for digest though as basic responses don't provide the realmSylvain Hellegouarch2008-02-181-3/+3
|
* Fix for #699Sylvain Hellegouarch2007-06-221-7/+18
|
* Implemented a login attribute for the request and answered #653Sylvain Hellegouarch2007-02-071-0/+2
|
* Fix for #596 (svn:eol-style)Robert Brewer2006-10-281-12/+12
|
* Added test_httpauth to test suite and re-used httpauth's md5 encoder.Robert Brewer2006-09-111-13/+12
|
* Basic encryption now defaults to md5 if not provided. It means that by ↵Sylvain Hellegouarch2006-09-111-1/+3
| | | | default passwords should be stored encrypted on the server.
* Digest and basic auth can now take a callable which must return a dict with ↵Sylvain Hellegouarch2006-09-111-7/+17
| | | | | | user credentials so that it can fetch those from a database for instance. Basic takes also an encrypt parameter which must be a callable that will encrypt the password sent back the user-agent. So that passwords can be stored encrypted on the server.
* Docstrings + tweaks for new auth.py.Robert Brewer2006-09-111-13/+21
|
* Split the httpauth code for licensing potential issue.Sylvain Hellegouarch2006-09-111-0/+43