3v4l.org

run code in 300+ PHP versions simultaneously
<?php include('Crypt/AES.php'); $cipher = new Crypt_AES(); // it's cbc by default $cipher->setKeyLength(256); $cipher->setKey('abcdefghijklmnopijklmnopqrstuvwxyz3456'); $size = 10 * 1024; $plaintext = str_repeat('a', $size); echo $cipher->decrypt($cipher->encrypt($plaintext)); ?>
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/0fc61
function name:  (null)
number of ops:  24
compiled vars:  !0 = $cipher, !1 = $size, !2 = $plaintext
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    2     0  E >   INCLUDE_OR_EVAL                                          'Crypt%2FAES.php', INCLUDE
    4     1        NEW                                              $4      'Crypt_AES'
          2        DO_FCALL                                      0          
          3        ASSIGN                                                   !0, $4
    5     4        INIT_METHOD_CALL                                         !0, 'setKeyLength'
          5        SEND_VAL_EX                                              256
          6        DO_FCALL                                      0          
    6     7        INIT_METHOD_CALL                                         !0, 'setKey'
          8        SEND_VAL_EX                                              'abcdefghijklmnopijklmnopqrstuvwxyz3456'
          9        DO_FCALL                                      0          
    8    10        ASSIGN                                                   !1, 10240
    9    11        INIT_FCALL                                               'str_repeat'
         12        SEND_VAL                                                 'a'
         13        SEND_VAR                                                 !1
         14        DO_ICALL                                         $10     
         15        ASSIGN                                                   !2, $10
   11    16        INIT_METHOD_CALL                                         !0, 'decrypt'
         17        INIT_METHOD_CALL                                         !0, 'encrypt'
         18        SEND_VAR_EX                                              !2
         19        DO_FCALL                                      0  $12     
         20        SEND_VAR_NO_REF_EX                                       $12
         21        DO_FCALL                                      0  $13     
         22        ECHO                                                     $13
   12    23      > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
159.85 ms | 1399 KiB | 15 Q