Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neto committed Jan 11, 2025
1 parent 6c3a6f1 commit 5d53819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion objects/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -3042,7 +3042,7 @@ function encrypt_decrypt($string, $action, $useOldSalt = false)
$output = openssl_encrypt($string, $encrypt_method, $key, 0, $iv);
$output = base64_encode($output);
} elseif ($action == 'decrypt') {
var_dump($string, base64_decode($string), $global['salt'], $global['saltV2'], $encrypt_method, $key, $iv);
//var_dump($string, base64_decode($string), $global['salt'], $global['saltV2'], $encrypt_method, $key, $iv);
$output = openssl_decrypt(base64_decode($string), $encrypt_method, $key, 0, $iv);
if (empty($output) && $useOldSalt === false) {
return encrypt_decrypt($string, $action, true);
Expand Down

0 comments on commit 5d53819

Please sign in to comment.