mirror of
https://github.com/uhIgnacio/EmoteManager.git
synced 2024-08-15 02:23:13 +00:00
9 lines
168 B
Python
9 lines
168 B
Python
import hashlib
|
|
|
|
try:
|
|
hashlib.md5(usedforsecurity=False)
|
|
except TypeError:
|
|
md5 = hashlib.md5
|
|
else:
|
|
def md5(*args):
|
|
return hashlib.md5(*args, usedforsecurity=False)
|