Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-33604: Remove deprecated HMAC default value marked for removal in 3.8 ↵ | Matthias Bussonnier | 2018-09-10 | 1 | -2/+1 |
| | | | | | (GH-7063) HMAC's digestmod was deprecated marked for removal, this removes it as planned. | ||||
* | bpo-33604: Remove Pending from hmac Deprecation warning. (GH-7062) | Matthias Bussonnier | 2018-05-22 | 1 | -1/+1 |
| | | | bpo-33604: Bump removal notice from 3.6 to 3.8 and change PendingDeprecationWarning to DeprecationWarning as we had intended to do earlier... | ||||
* | bpo-32433: Optimized HMAC digest (#5023) | Christian Heimes | 2018-01-27 | 1 | -0/+15 |
| | | | | | | | The hmac module now has hmac.digest(), which provides an optimized HMAC digest for short messages. hmac.digest() is up to three times faster than hmac.HMAC().digest(). Signed-off-by: Christian Heimes <christian@python.org> | ||||
* | Change double hyphens (en dashes) to em (longer) dashes | Martin Panter | 2016-11-21 | 1 | -1/+1 |
| | |||||
* | Issue #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 1 | -0/+1 |
| | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi. | ||||
* | that this is "for Python" is obvious | Benjamin Peterson | 2015-06-06 | 1 | -1/+0 |
| | |||||
* | Issues #21948 and #16040: Fix typos. | Berker Peksag | 2014-07-09 | 1 | -1/+1 |
| | |||||
* | Merge in all documentation changes since branching 3.4.0rc1. | Larry Hastings | 2014-03-16 | 1 | -3/+2 |
| | |||||
* | Issue #18775: Add name and block_size attribute to HMAC object. They now | Christian Heimes | 2013-11-20 | 1 | -0/+19 |
| | | | | provide the same API elements as non-keyed cryptographic hash functions. | ||||
* | Issue #17276: MD5 as default digestmod for HMAC is deprecated. The HMAC | Christian Heimes | 2013-11-20 | 1 | -2/+9 |
| | | | | module supports digestmod names, e.g. hmac.HMAC('sha1'). | ||||
* | merge with 3.3 | Georg Brandl | 2013-10-06 | 1 | -1/+1 |
|\ | |||||
| * | Fix markup to not add parens to the "hashlib.md5" constructor when the ↵ | Georg Brandl | 2013-10-06 | 1 | -1/+1 |
| | | | | | | | | object is meant, not the call. | ||||
* | | Issue 18240: The HMAC module is no longer restricted to bytes and accepts | Christian Heimes | 2013-07-01 | 1 | -6/+12 |
|/ | | | | any bytes-like object, e.g. memoryview. Original patch by Jonas Borgström. | ||||
* | #16518: use "bytes-like object" throughout the docs. | Ezio Melotti | 2013-05-04 | 1 | -2/+1 |
| | |||||
* | Minor grammar refinement for hmac.compare_digest(). | Larry Hastings | 2012-06-25 | 1 | -2/+2 |
| | |||||
* | Remove a detailed discussion of content-based short circuiting, off topic ↵ | Antoine Pitrou | 2012-06-24 | 1 | -13/+4 |
| | | | | for library docs. | ||||
* | Simplify wording. | Antoine Pitrou | 2012-06-24 | 1 | -8/+4 |
| | |||||
* | Formatting | Antoine Pitrou | 2012-06-24 | 1 | -4/+4 |
| | |||||
* | Merge heads. | Georg Brandl | 2012-06-24 | 1 | -1/+1 |
|\ | |||||
| * | The buffer protocol doesn't exist (in the glossary anyway). | Antoine Pitrou | 2012-06-24 | 1 | -1/+1 |
| | | |||||
* | | Merge heads. | Georg Brandl | 2012-06-24 | 1 | -10/+9 |
|\ \ | |/ | |||||
| * | Larry's suggested rewording of the compare_digest() docs. | Antoine Pitrou | 2012-06-24 | 1 | -29/+12 |
| | | |||||
* | | Improve hmac.compare_digest() docstring and documentation, courtesy of Larry H. | Georg Brandl | 2012-06-24 | 1 | -22/+23 |
|/ | |||||
* | Issue #15061: Re-implemented hmac.compare_digest() in C | Christian Heimes | 2012-06-24 | 1 | -5/+11 |
| | |||||
* | Issue #15061: Don't oversell the capabilities of the new non-shortcircuiting ↵ | Nick Coghlan | 2012-06-15 | 1 | -16/+25 |
| | | | | comparison function in hmac | ||||
* | Add versionadded for hmac.secure_compare(). | Charles-François Natali | 2012-05-15 | 1 | -0/+1 |
| | |||||
* | Issue #14532: Add a secure_compare() helper to the hmac module, to mitigate | Charles-François Natali | 2012-05-13 | 1 | -0/+32 |
| | | | | timing attacks. Patch by Jon Oberheide. | ||||
* | Closes #13944: fix capitalization of class name. | Georg Brandl | 2012-02-05 | 1 | -4/+4 |
| | |||||
* | More source links | Raymond Hettinger | 2011-01-27 | 1 | -0/+3 |
| | |||||
* | #5212: md5 weaknesses do not affect hmac, so remove the note about that. | Georg Brandl | 2010-10-17 | 1 | -5/+0 |
| | |||||
* | Fix hmac docs: it takes and returns bytes, except for hexdigest(). | Georg Brandl | 2010-10-17 | 1 | -16/+18 |
| | |||||
* | Merged revisions 76904 via svnmerge from | Ezio Melotti | 2009-12-19 | 1 | -1/+1 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76904 | ezio.melotti | 2009-12-20 00:41:49 +0200 (Sun, 20 Dec 2009) | 1 line #7388: "python".capitalize() in the Doc ........ | ||||
* | More conversion to new-style optional args. | Georg Brandl | 2009-05-17 | 1 | -2/+1 |
| | |||||
* | Get rid of the remaining versionadded/versionchanged directives. | Georg Brandl | 2007-09-01 | 1 | -2/+0 |
| | |||||
* | Move the 3k reST doc tree in place. | Georg Brandl | 2007-08-15 | 1 | -0/+61 |