This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: hmac performance optimization
Type: performance Stage:
Components: Library (Lib) Versions: Python 2.5
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: amaury.forgeotdarc, fafhrd
Priority: normal Keywords: patch

Created on 2008-04-24 12:02 by fafhrd, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
hmac.py.diff fafhrd, 2008-04-24 12:02
Messages (2)
msg65720 - (view) Author: Nikolay Kim (fafhrd) Date: 2008-04-24 12:02
i removed lambda in _strxor function
msg65722 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2008-04-24 13:19
issue1618455 (r53065) already improved performance and was probably
better: _strxor does not exist anymore, and has been replaced by a call
to translate().
History
Date User Action Args
2022-04-11 14:56:33adminsetgithub: 46930
2008-04-24 13:19:12amaury.forgeotdarcsetstatus: open -> closed
resolution: out of date
messages: + msg65722
nosy: + amaury.forgeotdarc
2008-04-24 12:02:47fafhrdcreate