3v4l.org

run code in 300+ PHP versions simultaneously
<?php class CRYPT { public function encrypt($Str,$Key=ENCKEY) { srand(); $Str=str_pad($Str, 32-strlen($Str)); $IVSize=mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC); $IV=mcrypt_create_iv($IVSize, MCRYPT_RAND); $CryptStr=mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $Key, $Str, MCRYPT_MODE_CBC, $IV); return base64_encode($IV.$CryptStr); } public function decrypt($CryptStr,$Key=ENCKEY) { if ($CryptStr!='') { $IV=substr(base64_decode($CryptStr),0,16); $CryptStr=substr(base64_decode($CryptStr),16); return trim(mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $Key, $CryptStr, MCRYPT_MODE_CBC,$IV)); } else { return ''; } } } // class ENCRYPT() $enc = new CRYPT; $s = "vhqeqioslhcy3yzqi47fp6evl7clr4n9|~|1|~|62.107.4.183"; $s = $enc->encrypt($s, "w+2#)1FP&LIPTL2<8I2"); $s = "DXU+BnC/xV6b/CQXj2kd+qyRIw9esCuFb8vQuyJkPFQzyYLu7NXKIpRlrWsOe5xLhvCwpRcXcr8dpsK9zOYlSgxUSgoPlLcrlsD1+RJNCm2bDB0RJw8lg4P47nCThpnd3XsgHpcwfU4lp/OfmAWFHikFOKOOa3iWGL7vQPsDax0="; $test = $enc->encrypt($s, "w+2#)1FP&LIPTL2<8I2"); //echo $test; $lol = $enc->decrypt($s, "w+2#)1FP&LIPTL2<8I2"); echo $enc->decrypt($lol, "w+2#)1FP&LIPTL2<8I2");
Output for 7.0.6 - 7.0.20, 7.1.0 - 7.1.33, 7.2.6 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Call to undefined function mcrypt_get_iv_size() in /in/XTm1H:7 Stack trace: #0 /in/XTm1H(26): CRYPT->encrypt('vhqeqioslhcy3yz...', 'w+2#)1FP&LIPTL2...') #1 {main} thrown in /in/XTm1H on line 7
Process exited with code 255.
Output for 5.6.8 - 5.6.20, 7.0.0 - 7.0.5
Warning: mcrypt_encrypt(): Key of size 19 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/XTm1H on line 9 Warning: mcrypt_encrypt(): Key of size 19 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/XTm1H on line 9 Warning: mcrypt_decrypt(): Key of size 19 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/XTm1H on line 17
Output for 5.5.35, 5.6.21 - 5.6.28
Fatal error: Call to undefined function mcrypt_get_iv_size() in /in/XTm1H on line 7
Process exited with code 255.
Output for 5.5.24 - 5.5.34
txowsgg2pkktlq9t3itjfqxinqgciw92|~|68012|~|188.172.219.43

preferences:
165.66 ms | 401 KiB | 211 Q