Add TODO to remove md5 wrapper

Added TODO to make sure we remember to remove the md5 wrapper
when the minimum python distribution supports it.

Change-Id: I2a489b0f645c77d58c7de070f88c1d79832e92cf
This commit is contained in:
Ade Lee 2021-02-17 16:37:08 -05:00
parent e68c69d025
commit e9dde2925b

View File

@ -239,6 +239,10 @@ try:
# Python distributions that support a hashlib.md5 with the usedforsecurity
# keyword can just use that md5 definition as-is
# See https://bugs.python.org/issue9216
#
# TODO(alee) Remove this wrapper when the minimum python version is bumped
# to 3.9 (which is the first upstream version to support this keyword)
# See https://docs.python.org/3.9/library/hashlib.html
md5 = hashlib.md5
except TypeError:
def md5(string=b'', usedforsecurity=True):