summaryrefslogtreecommitdiff
path: root/Lib/hmac.py
Commit message (Expand)AuthorAgeFilesLines
* backport hmac.compare_digest to partially implement PEP 466 (closes #21306)Benjamin Peterson2014-05-111-0/+3
* silence callable warning in hmacBenjamin Peterson2008-08-191-1/+1
* Fixes Issue 1385: The hmac module now computes the correct hmac when usingGregory P. Smith2007-11-061-2/+18
* [Rest of patch #1182394] Add ._current() method so that we can use the writte...Andrew M. Kuchling2006-12-271-4/+12
* [Part of patch #1182394] Move the HMAC blocksize to be a class-levelAndrew M. Kuchling2006-12-271-3/+4
* [Patch #1618455 by Ben Maurer] Improve speed of HMAC by using str.translate()Andrew M. Kuchling2006-12-191-9/+4
* [ sf.net patch # 1121611 ]Gregory P. Smith2005-08-211-9/+15
* Speed HMAC.copy() by installing a secret backdoor argument toTim Peters2004-03-201-1/+11
* Remove uses of the string and types modules:Walter Dörwald2002-06-031-3/+1
* Replace boolean test with is NoneRaymond Hettinger2002-06-011-1/+1
* Replace '== None' with 'is None'Raymond Hettinger2002-05-311-1/+1
* Whitespace normalization.Tim Peters2001-11-131-2/+1
* [Patch #477336] Make hmac.py match PEP247, and fix the copy method() so thatAndrew M. Kuchling2001-11-021-23/+13
* Whitespace normalization.Tim Peters2001-09-181-3/+3
* HMAC algorithm as described by RFC 2104, by Gerhard Häring (SF patchGuido van Rossum2001-09-111-0/+110