📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-06-23 16:03:00 +00:00
parent c4c6a41c21
commit 59e15f8999
557 changed files with 10501 additions and 3168 deletions
@@ -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()
@@ -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()