3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Dencrypt { const METHOD = 'aes-256-ctr'; public static function encrypt($message, $key, $encode = true) { // you may change these values to your own $secret_key = 'my_simple_secret_key'; $secret_iv = 'my_simple_secret_iv'; $output = false; $encrypt_method = "AES-256-CBC"; $key = hash( 'sha256', $secret_key ); $iv = substr( hash( 'sha256', $secret_iv ), 0, 16 ); if( $encode ) { $output = base64_encode( openssl_encrypt( $message, $encrypt_method, $key, 0, $iv ) ); } else{ $output = openssl_decrypt( base64_decode( $message ), $encrypt_method, $key, 0, $iv ); } return $output; } } $message = 'Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.Ready your ammunition; we attack at dawn.'; $key = hex2bin('000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f'); $encrypted = Dencrypt::encrypt($message, $key); $decrypted = Dencrypt::encrypt($encrypted, $key, false); var_dump($encrypted, $decrypted);
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function openssl_encrypt() in /in/vmjdd:19 Stack trace: #0 /in/vmjdd(32): Dencrypt::encrypt('Ready your ammu...', '3d13b07f244861f...') #1 {main} thrown in /in/vmjdd on line 19
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
62.79 ms | 401 KiB | 8 Q