Update: 2026-05-04 21:37:54

This commit is contained in:
Hamza-Ayed
2026-05-04 21:37:54 +03:00
parent 75f969f821
commit 23189713dc
2 changed files with 40 additions and 40 deletions

View File

@@ -62,7 +62,7 @@ final class Encryption
$tagLength = 16;
if (strlen($decoded) < $ivLength + $tagLength) {
error_log("ENCRYPTION ERROR: Data too short for IV and TAG. Length: " . strlen($decoded));
// This is likely legacy unencrypted data, return false silently
return false;
}