3v4l.org

run code in 300+ PHP versions simultaneously
<?php define('SALT', str_pad('$2015',16)); function encrypt($text) { return trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, SALT, $text, MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB), MCRYPT_RAND)))); } function decrypt($text) { return trim(mcrypt_decrypt(MCRYPT_RIJNDAEL_256, SALT, base64_decode($text), MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB), MCRYPT_RAND))); } $encryptedmessage = encrypt("DhKg8ORbWDuuso2DnpsoE1pLjpqgkeJ7xRgODWOIjk4="); echo decrypt($encryptedmessage);

preferences:
41.41 ms | 402 KiB | 5 Q