PHP
Here is the function for Encrypt and Decrypt (String, text, ids) for URL Using PHP. please set change $secret_key and $secret_iv for your wish to generate secure encryption and decryption keys. function encryptor($action, $string) { $output = false; $encrypt_method = “AES-256-CBC”; //pls set your unique hashing key $secret_key = ‘tst’; $secret_iv = ‘tst123’; // hash … Read More “Encrypt and Decrypt for URL Using PHP” »