Update: 2026-05-04 18:05:37

This commit is contained in:
Hamza-Ayed
2026-05-04 18:05:37 +03:00
parent 2d25bee2a6
commit 691305340a
4 changed files with 451 additions and 852 deletions

11
scratch/debug_decrypt.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
require_once __DIR__ . '/app/bootstrap/init.php';
use App\Core\Encryption;
$testString = 'dr2LLF70iAqt8g34Dhr/eT1H9o1rSIq3Bb4NHA';
$decrypted = Encryption::decrypt($testString);
var_dump($decrypted);
$testString2 = '==dr2LLF70iAqt8g34Dhr/eT1H9o1rSIq3Bb4NHA';
$decrypted2 = Encryption::decrypt($testString2);
var_dump($decrypted2);