3v4l.org

run code in 300+ PHP versions simultaneously
<?php $encryptionKey = base64_decode("xErBbroP73A4DPhHAIEMul6zf9lenyuEno04tmdWZ3g="); $checksumKey = base64_decode("xPwnkqGeQXmMJom48pSEdRmU1MXQ8kr3jCey20d+eu8="); $timestamp = floor(microtime(true)*1000); $message = $timestamp.";friendfinder123"; echo "<P>Message: $message\n"; $blockSize = mcrypt_get_block_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC); $padding = $blockSize - (strlen($message) % $blockSize); $message .= str_repeat(chr($padding), $padding); echo "<P>Message 1: $message\n"; srand(time()); $ivSize = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC); $iv = mcrypt_create_iv($ivSize,MCRYPT_RAND); $encryptedMessage = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $encryptionKey, $message,MCRYPT_MODE_CBC, $iv); $newmessage = base64_encode($encryptedMessage); echo "<P>newmessage: $newmessage\n"; $hmac = hash_hmac("sha1", $encryptedMessage.$iv, $checksumKey, true); $authorizationToken = base64_encode($encryptedMessage.$iv.$hmac); echo "<P>authorizationToken: $authorizationToken \n"; ?>
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.26, 7.3.0 - 7.3.13, 7.4.0 - 7.4.1
<P>Message: 1413580463000;friendfinder123 Fatal error: Uncaught Error: Call to undefined function mcrypt_get_block_size() in /in/qb1v5:8 Stack trace: #0 {main} thrown in /in/qb1v5 on line 8
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
<P>Message: 1413580463000;friendfinder123 Fatal error: Call to undefined function mcrypt_get_block_size() in /in/qb1v5 on line 8
Process exited with code 255.
Output for 5.2.4, 5.2.8, 5.2.17, 5.3.1 - 5.3.3, 5.3.6, 5.3.9, 5.3.11 - 5.3.13, 5.3.15 - 5.3.16, 5.3.19, 5.3.24, 5.3.28 - 5.3.29
<P>Message: 1413580463002;friendfinder123 Fatal error: Call to undefined function mcrypt_get_block_size() in /in/qb1v5 on line 8
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.3, 5.2.5 - 5.2.7, 5.2.9 - 5.2.16, 5.3.0, 5.3.4 - 5.3.5, 5.3.7 - 5.3.8, 5.3.10, 5.3.14, 5.3.17 - 5.3.18, 5.3.20 - 5.3.23, 5.3.25 - 5.3.27
<P>Message: 1413580463001;friendfinder123 Fatal error: Call to undefined function mcrypt_get_block_size() in /in/qb1v5 on line 8
Process exited with code 255.
Output for 4.4.5 - 4.4.9
<P>Message: 0;friendfinder123 Fatal error: Call to undefined function: mcrypt_get_block_size() in /in/qb1v5 on line 8
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
<P>Message: 0;friendfinder123 Fatal error: Call to undefined function: mcrypt_get_block_size() in /in/qb1v5 on line 8
Process exited with code 255.
Output for 4.3.0 - 4.3.1
<P>Message: 0;friendfinder123 Fatal error: Call to undefined function: mcrypt_get_block_size() in /in/qb1v5 on line 8

preferences:
196.11 ms | 402 KiB | 325 Q