Fix LegacyEncryption to use config for IV

This commit is contained in:
Hamza-Ayed
2026-04-23 23:55:51 +03:00
parent 75e928650b
commit 425f28a715
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ class LegacyEncryption
}
$this->key = trim(file_get_contents($keyPath));
$this->iv = env('LEGACY_IV', '');
$this->iv = config('intaleq.legacy_iv', '');
}
/**