aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_hmac.py
Commit message (Expand)AuthorAge
* bpo-43988: Use check disallow instantiation helper (GH-26392)Erlend Egeberg Aasland2021-05-27
* bpo-43908: Mark ssl, hash, and hmac types as immutable (GH-25792)Christian Heimes2021-05-02
* bpo-43916: Remove _disabled_new() function (GH-25745)Victor Stinner2021-04-30
* bpo-40645: use C implementation of HMAC (GH-24920)Christian Heimes2021-03-27
* bpo-40791: Use CRYPTO_memcmp() for compare_digest (#20456)Christian Heimes2020-05-27
* bpo-40645: Implement HMAC in C (GH-20129)Christian Heimes2020-05-17
* bpo-40645: Deprecated internal details of hmac.HMAC (GH-20132)Christian Heimes2020-05-17
* bpo-40275: Move requires_hashdigest() to test.support.hashlib_helper (GH-19716)Hai Shi2020-04-29
* bpo-38270: Fix indentation of test_hmac assertions (GH-17446)stratakis2019-12-03
* bpo-33604: Raise TypeError on missing hmac arg. (GH-16805)Gregory P. Smith2019-10-17
* bpo-38270: More fixes for strict crypto policy (GH-16418)Christian Heimes2019-09-27
* bpo-38270: Check for hash digest algorithms and avoid MD5 (GH-16382)Christian Heimes2019-09-25
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-30
* bpo-33604: Remove deprecated HMAC default value marked for removal in 3.8 (GH...Matthias Bussonnier2018-09-10
* bpo-33604: Remove Pending from hmac Deprecation warning. (GH-7062)Matthias Bussonnier2018-05-22
* bpo-32433: Optimized HMAC digest (#5023)Christian Heimes2018-01-27
* Remove unused support.run_unittest imports.Serhiy Storchaka2016-04-24
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-13
* Issue #19758: silence PendingDeprecationWarnings in test_hmacChristian Heimes2013-11-24
* Issue #18775: Add name and block_size attribute to HMAC object. They nowChristian Heimes2013-11-20
* Issue #17276: MD5 as default digestmod for HMAC is deprecated. The HMACChristian Heimes2013-11-20
* Issue 18240: The HMAC module is no longer restricted to bytes and acceptsChristian Heimes2013-07-01
* Issue #15225: improve error message when hmac is passed a wrong key type.Antoine Pitrou2012-06-30
* Issue #15061: Re-implemented hmac.compare_digest() in CChristian Heimes2012-06-24
* Issue #15061: Don't oversell the capabilities of the new non-shortcircuiting ...Nick Coghlan2012-06-15
* Issue #14532: Add a secure_compare() helper to the hmac module, to mitigateCharles-François Natali2012-05-13
* (partially)Florent Xicluna2010-04-02
* convert old fail* assertions to assert*Benjamin Peterson2009-06-30
* Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ fromMark Dickinson2009-01-27
* Merged revisions 66321 via svnmerge fromBrett Cannon2008-09-09
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-20
* Merged revisions 61644,61646-61647,61649-61652,61656-61658,61663,61665,61667 ...Christian Heimes2008-03-20
* Merged revisions 58862-58885 via svnmerge fromGuido van Rossum2007-11-06
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-27
* Patch by Christian Heimes to change self.assert_(x == y) intoGuido van Rossum2007-07-11
* Make hmac use bytes. Make test_hmac pass.Guido van Rossum2007-07-10
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-06
* [ sf.net patch # 1121611 ]Gregory P. Smith2005-08-21
* Add more tests from RFC 2202.Jeremy Hylton2003-05-27
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-01
* Standardize behavior: no docstrings in test functions; create a singleGuido van Rossum2002-08-22
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-23
* Use attributes appropriatelyNeal Norwitz2002-04-01
* Whitespace normalization.Tim Peters2001-11-13
* [Patch #477336] Add an extensive PyUnit based testsuite for the hmacAndrew M. Kuchling2001-11-02
* Test for new hmac module.Guido van Rossum2001-09-11