📦 deps(thirdparty): update snapshots
This commit is contained in:
+1
-1
@@ -8,4 +8,4 @@ def string_to_md5(text):
|
||||
if text == '':
|
||||
return None
|
||||
import hashlib
|
||||
return hashlib.md5(text.encode()).hexdigest()
|
||||
return hashlib.new("md5", text.encode(), usedforsecurity=False).hexdigest()
|
||||
+1
-1
@@ -13,4 +13,4 @@ def string_to_md5(text):
|
||||
if text == '':
|
||||
return None
|
||||
import hashlib
|
||||
return hashlib.md5(text.encode()).hexdigest()
|
||||
return hashlib.new("md5", text.encode(), usedforsecurity=False).hexdigest()
|
||||
Reference in New Issue
Block a user