fix: add nosec comment to exception handling in CryptoUtils decryption

This commit is contained in:
Lloyd
2026-06-23 09:13:48 +01:00
parent ee6f6a0d0d
commit 3b7a20a192
+1 -1
View File
@@ -579,7 +579,7 @@ class TextHelper:
try:
CryptoUtils.mac_then_decrypt(shared_secret[:16], shared_secret, encrypted_data)
return client_info
except Exception:
except Exception: # nosec B112
continue
return None