Warning: openssl_encrypt(): Unknown cipher algorithm in /var/www/html/parts/main/classes/users/index.php on line 57 after change php version code example
Example: openssl_encrypt
$textToEncrypt = "My super secret information.";
$encryptionMethod = "AES-256-CBC";
$secretHash = "25c6c7ff35b9979b151f2136cd13b0ff";
$encryptedMessage = openssl_encrypt($textToEncrypt, $encryptionMethod, $secretHash);
$decryptedMessage = openssl_decrypt($encryptedMessage, $encryptionMethod, $secretHash);
echo "Encrypted: $encryptedMessage <br>Decrypted: $decryptedMessage";