decrypt_code - PHP Online

Form of PHP Sandbox

Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php in the places where the PHP script should be executed.



Your result can be seen below.

Result of php executing





Full code of decrypt_code.php

  1. <?php
  2.         $key = 'oE)yIVHbhM;2vZg-A/?BhXwXO!jqLf${';
  3.         $encryptedString = openssl_decrypt("D0dIE1nzkZKp1DcD3aCbm5MLr93UtChD/Kpekx695sw=", 'aes-256-cbc', $key);
  4.     //   $encryptedString = openssl_encrypt(" [email protected]", 'aes-256-cbc', $key);
  5.          $temp = substr($encryptedString,16);
  6.          echo $temp;
File Description
  • decrypt_code
  • PHP Code
  • 18 Oct-2021
  • 324 Bytes
You can Share it: