summaryrefslogtreecommitdiff
path: root/requests/auth.py
Commit message (Expand)AuthorAgeFilesLines
* for RFC-7616 add SHA-256 and SHA-512David Poole2017-11-081-0/+12
* fix flake8 indent errorKenneth Reitz2017-05-291-1/+1
* new requests namespaceKenneth Reitz2017-05-291-1/+1
* Remove some unused imports.Chris Gavin2017-04-251-1/+0
* Only send HTTPDigestAuth on 4xx challengesMatthew Medal2017-01-271-0/+6
* python 2.6 compatibilibyKenneth Reitz2016-12-201-2/+2
* Add deprecation warnings for 3.0Ian Cordasco2016-12-091-0/+15
* adding string casting for non-bytes valuesNate Prewitt2016-12-081-2/+16
* remove extra importDmitry Klimenko2016-11-171-1/+1
* Order of type checkDmitry Klimenko2016-11-171-5/+5
* Unable unicode in basic http authDmitry Klimenko2016-11-121-1/+7
* Change module of internal references to to_native_str()Brian Bamsch2016-09-271-1/+2
* Document bunch of return typesVille Skyttä2016-08-091-1/+8
* adding in pep8 fixesNate Prewitt2016-07-201-0/+3
* Initialize hash_utf8 to None, preventing NameError. Fixes #3138.Mark Shannon2016-04-291-0/+1
* Fix syntax errorMarkus Unterwaditzer2016-01-301-2/+2
* cleanup of auth __eq__Kenneth Reitz2016-01-291-12/+8
* Add equality functions for authentication handlersNicolas Delvaux2016-01-041-0/+22
* requests/auth: Handle an empty 'qop' attribute in a Authenticate challengeMatt Jordan2015-12-051-1/+1
* Merge branch 'auth-digest-multi-thread' of https://github.com/exvito/requests...Ian Cordasco2015-07-181-27/+38
|\
| * Issue #2334 - HTTPDigestAuth - Renamed thread local attributeexvito2015-04-041-31/+30
| * Issue #2334 - HTTPDigestAuth - Improved per-thread state initexvito2015-04-031-12/+10
| * Issue #2334 - HTTPDigestAuth - All state now in thread local storageexvito2015-04-031-27/+38
| * Issue #2334 - HTTPDigestAuth - Replace getattr utilizationexvito2015-04-021-1/+1
| * Issue #2334 - HTTPAuthDigest - Making it thread-safeexvito2015-04-021-5/+8
* | Auth handler calls close instead of raw.close_connSaimadhav Heblikar2015-05-141-1/+1
* | Merge pull request #2427 from luozhaoyu/masterIan Cordasco2015-04-061-1/+2
|\ \ | |/ |/|
| * Bug fix: field uri in digest authentication should not be empty when encounte...Zhaoyu Luo2015-01-251-1/+2
* | Move noncebit to the only place it is usedIan Cordasco2015-01-191-1/+3
|/
* Fix bug in renegotiating a nonce with the serverIan Cordasco2014-12-231-3/+4
* Fix HTTPDigestAuth not to treat non-file as a fileAkira Kitada2014-11-131-1/+5
* Clean up handle_redirect.Yossi Gottlieb2014-10-231-3/+1
* Clean up, support all redirects, fix potential endless 401 loop.Yossi Gottlieb2014-10-081-8/+8
* A fix for #1979 repeat HTTP digest authentication after redirect.Yossi Gottlieb2014-09-271-0/+9
* Avoid unnecessary encode/decode cycles.Cory Benfield2014-06-081-4/+4
* Force basic auth strings to native string typeCory Benfield2014-06-081-2/+6
* Remove unused loggers.Martijn Pieters2014-02-031-3/+0
* Address feedback from #1729Ian Cordasco2013-12-041-2/+2
* Store the request cookiejar in PreparedRequest.cookies fix #1728Chase Sterling2013-12-041-1/+3
* Quote qop values in digest auth.Cory Benfield2013-11-291-2/+2
* Fix hangs on streaming uploads with HTTPDigestAuthAkira Kitada2013-11-251-0/+9
* second commit : Fixed #1623. Added 'MD5-sess' algorithm to HTTPDigestAuthdaftshady2013-10-261-17/+22
* Handle case when WWW-Authenticate returns multiple qopsIan Cordasco2013-09-131-3/+3
* Take advantage of the new copy methodIan Cordasco2013-07-271-7/+1
* Make the regular tests passIan Cordasco2013-07-271-10/+12
* Start work on sending cookies backIan Ross and Ian Cordasco2013-07-271-2/+9
* don't replace 'Digest' in digest header valueThomas Weißschuh2013-05-211-1/+1
* Merge pull request #1242 from oviboy/masterKenneth Reitz2013-04-131-1/+3
|\
| * compiled regex expression in digest auth, this also works in python 2.6.xOvidiu Negrut2013-03-251-1/+2
| * Digest auth: case insensitive replacement of 'digest ' string with '' from WW...Ovidiu Negrut2013-03-111-1/+2