openssl_decrypt

Supported Versions: PHP 5 >= 5.3.0, PHP 7, PHP 8
Decrypts data
<?php openssl_decrypt(    string $data,    string $cipher_algo,    string $passphrase,    int $options = 0,    string $iv = "",    ?string $tag = null,    string $aad = ""): string|false
<?php                 continue;

            }



            $decrypted = \openssl_decrypt(

                $payload['value'], strtolower($this->cipher), $key, 0, $iv, $tag ?? ''

            );



            if ($decrypted !== false) {

                break;