Teste PB - 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 Teste PB.php

  1. <?php
  2.         $key = 'chbauto#testeenviron992828288921';
  3.         // $vector = chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0);
  4.         $encryptedString = openssl_encrypt('teste', 'aes-128-cbc', $key);
  5.         echo 'Encrypted: '.$encryptedString."\n";
  6.         $encryptedStringBase64 = base64_encode($encryptedString);
  7.         echo 'Encrypted + base 64:'.$encryptedStringBase64."\n";
  8.  
  9.         echo 'Decrypted:'.openssl_decrypt(base64_decode($encryptedStringBase64),'aes-128-cbc',  $key)."\n";
File Description
  • Teste PB
  • PHP Code
  • 17 Mar-2021
  • 616 Bytes
You can Share it: