3v4l.org

run code in 300+ PHP versions simultaneously
<?php # --- ENCRYPTION --- # the key should be random binary, use scrypt, bcrypt or PBKDF2 to # convert a string into a key # key is specified using hexadecimal $key = pack('H*', "bcb04b7e103a0cd8b54763051cef08bc55ab"); # show key size use either 16, 24 or 32 byte keys for AES-128, 192 # and 256 respectively $key_size = strlen($key); echo "Key size: " . $key_size . "\n"; $plaintext = "This string was AES-256 / CBC / ZeroBytePadding encrypted."; # create a random IV to use with CBC encoding $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC); $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND); # creates a cipher text compatible with AES (Rijndael block size = 128) # to keep the text confidential # only suitable for encoded input that never ends with value 00h # (because of default zero padding) $ciphertext = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $plaintext, MCRYPT_MODE_CBC, $iv); # prepend the IV for it to be available for decryption $ciphertext = $iv . $ciphertext; # encode the resulting cipher text so it can be represented by a string $ciphertext_base64 = base64_encode($ciphertext); echo $ciphertext_base64 . "\n"; # === WARNING === # Resulting cipher text has no integrity or authenticity added # and is not protected against padding oracle attacks. # --- DECRYPTION --- $ciphertext_dec = base64_decode($ciphertext_base64); # retrieves the IV, iv_size should be created using mcrypt_get_iv_size() $iv_dec = substr($ciphertext_dec, 0, $iv_size); # retrieves the cipher text (everything except the $iv_size in the front) $ciphertext_dec = substr($ciphertext_dec, $iv_size); # may remove 00h valued characters from end of plain text $plaintext_dec = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, $ciphertext_dec, MCRYPT_MODE_CBC, $iv_dec); echo $plaintext_dec . "\n"; ?>
Output for 7.0.6 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 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.4, 8.3.6
Key size: 18 Fatal error: Uncaught Error: Call to undefined function mcrypt_get_iv_size() in /in/d4mg0:17 Stack trace: #0 {main} thrown in /in/d4mg0 on line 17
Process exited with code 255.
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Key size: 18 Fatal error: Uncaught Error: Call to undefined function mcrypt_get_iv_size() in /in/d4mg0:17 Stack trace: #0 {main} thrown in /in/d4mg0 on line 17
Process exited with code 255.
Output for 7.0.5
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 AbCXuUKOYTPrhoYyQGsmPQ== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 7.0.4
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 p6bpX+2XYXDEkA1CARzUPA== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 7.0.3
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 26T4d5fY4A5Gt1XYZsDecw== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 7.0.2
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 PcoGdYmwHaaH2k60S+7efg== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 7.0.1
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 Ml1N5EIKjpu88YhrW8IKKw== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 7.0.0
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 kCDjqhFASAx4Y1WLLZiIrQ== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.5.35, 5.6.21
Key size: 18 Fatal error: Call to undefined function mcrypt_get_iv_size() in /in/d4mg0 on line 17
Process exited with code 255.
Output for 5.6.20
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 RFadHmABO4szmTyCOKHMKA== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.6.19
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 vy8op/Ny9Mlr2yhfwlKAvA== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.6.18
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 yLhSnDr1rWFulFnkqD/z3Q== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.6.17
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 DqRuhaAyF70tQyCQruL3KA== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.6.16
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 CDxASrc2zzJ4iyTjvSPxVw== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.6.15
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 aRDXSmTECiUDMZCqGMwBwg== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.6.14
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 gL7L+5exQDBsbeS+zWPf4w== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.6.13
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 +5YjzNQZkSwgqDG1LZ/eXA== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.6.12
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 VhYVZy8PtKGkGqb8awuMpA== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.6.11
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 +4kt/WuC4VNKVHFsNffSWQ== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.6.10
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 8QeDdUFaRUHjnWfdQIBwlw== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.6.9
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 635wb1G1YgSp7+YP+DJg+w== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.6.8
Key size: 18 Warning: mcrypt_encrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 25 Ew/WCGA4ncqYfbOm3b0ANw== Warning: mcrypt_decrypt(): Key of size 18 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/d4mg0 on line 52
Output for 5.5.34
Key size: 18 b6a9cCcZGYWZd2tRSbzNShGqIfRGzfsZIGBhj3RqjyhLKU16O6+bRZErxlWUqWBQVdHMkFYYOJvzhpbvIHStXv0oM0Cwa7MFbE7I4PutZao= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.33
Key size: 18 NQANbNDSHiXtlTqOQq7kHQ/IMvj1OTXCZTCvxAFxC+HigsqEoDR2Cue71YTENggIdEuUUhf23JTlI6qNIYsEIh7Tr1YMw8gMYZ5HdE+Mgws= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.32
Key size: 18 1w/spcIUb0dG0QfTNCRbOS5OWV8SjEJguw7GPz+twP/87KEtycm8tuIpYdS8uI1BQkVjMjfIpF+Tcjnkfj591PPVd1Y1r5Ry/iNBSAEM8Qc= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.31
Key size: 18 kZQrMDlJ5d9DluqhYB7blJ0aQzeZ/5wFGvD9+PCQFV3w7SurBY2vafiw5kW7keP4l0dKbjllWaEOJsRx2C9M5XyalSgZm7jVoL8LSGdkAxk= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.30
Key size: 18 E4H5EYcI0rxQ68RF4kGNFq6x77HZVXfyOn1bT8Q+05unNJWx8Kfd95nxDpnvG/iORM8v4mCGIZJ9UJoNviGAH5m1ispSfLpQx9mTXJLe6mU= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.29
Key size: 18 YqyjWeT4Xh5D7pebawoUz66njglPVDvnqcPNCqUkx8wXvbCBzGQOarN1OM/1jZh2YmgxcHjHqXxr2OjDy1jFs9/1o8hp4i3e0Tda3xsz0yc= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.28
Key size: 18 mgMXz04ehIaWjHfgUffQN9c9Wl6ncuFGnOiDhOlwBRHFH+ToeS0MroQtBtQMAcoIN17I47nzp/qgFWOtFbFltj/yMSpKWhN754zlhONAUnk= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.27
Key size: 18 h9j4JwEjTZup1VmcXycMi3r33Ew0FJsyiypk2UVhNXMxgc7/+lygr11e8YT6rS3B7U2XPFsLimF7yB4X/kNcNSfuCWeZnlM9GqJ1rdvJUqQ= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.26
Key size: 18 bhWi5TgJV3Wy+Xplx+AJOf6stLQeqDoiwg069HRehoPOQJrhV0y6QSjJYZBAxtt63P8+Zf1LIbzQuSuurhjTcZEmakI6VmusuNMB2dt+B/s= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.25
Key size: 18 Jqi01/bV6sLoEUX+vEG7K04zM5WAbLUMrhEjHUe6dH2OBd0v5UbQxCgS5r1bzfmN8Kc0DgErqAZMPeluRPY9b5ordN15Gzv9WWXmW4DTs88= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.24
Key size: 18 kbPvxh7OZl8nrQ+0psSKGOwR2belkzodbF8vjjpgxCxZdA4/88fAspT0FskXmPy4xqGd2xhaB4tIwnLuxMlJafG1hvk67l3l+Ea/qN9SuNQ= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.45
Key size: 18 zoFFEpzl/j8Pyyx0TveYF9fKiyD7cqdt6h5GGJnHfB9bgbsopDQzL2gDycsuGaTUDcxfdGUq6AxZZ8qFEiLjPh/tO2OK/Y4LMil9BGyArVw= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.44
Key size: 18 7LUfc+wwnqOUHOTsfVodh7FnIyy8cyHFsf+MJPFSaCG2wiOSYdL/Gds9hr9dbLLjuKh+Os+C5U1zAHv5D1kTng92W4mdd/ULWh1+10RJNYI= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.43
Key size: 18 mxQcfHhmwbxwg6aRYIcp8raokQWbI8XR8TBRRL1w2k5uNSp0XX6G39JzL7NYLFq59S9sNnaJ7VwWGWZnZvpY8Sadi/iO5D933VW3BTw3740= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.42
Key size: 18 UK4J5J0slXFGixY0i3iRZSMR5LHOX6wS6uelhHj4qkPLITE0pbdA2KQH6+U1ArhPHLgSJKa90+gleAEpX9USZmO7LuFKuWfS0SWrlGrcKX0= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.41
Key size: 18 7Xhe3BlUhyykZGYGuej83w6/jnRxH+smoTBYi3XmKU13Lo8+8Yf6hTyCNqRKtdHWOI9dc02O0JeTmsxiH03J3Ek6paJtDv4dvWy52W2BUIE= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.40
Key size: 18 /nD4vbTI9ED2FOq3vv6SYhjTurOGg/mIg6k5/v7g1wEpfAohxTKGpfeZV+8DfR10BIhLt0HcsZHCzWVYMtJHkou23ZIPAf+x4uoGr6G79h8= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.39
Key size: 18 F8Lx1LP1EjNQhsJQDsYwftachUgHgJsbkwzeWoYDIqXQ+yhVKB2KiauMN0Vx0SclnTxHfJGSu32po/W6anfdjXG7aGikRBi5T80TkVMm6QQ= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.38
Key size: 18 Drp77ViPO5Km7t4tg6n1UIojNB+Z3Wy6xqXosYPsIwqSyqo4FCsJcXpnf/53TCKCvqeoAL/x8NxG3vvUoPT4WRq7qgrU4OIrNetsfKri7/k= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.37
Key size: 18 vHnPgOL3WgWmoEBqC527pVBxyuqKSb1sA7EzdTyYUlfvYBzTZxctzI8m5xLK+bosnfHFl+ig+SL7ditMJOtgcVkQ5gKl8+seCPWzctZy1Hw= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.36
Key size: 18 Mr+vsHicRyHsj+WAPUrnMS8TWpKuvyFdFDwB4cA82dvEtoPAjrVirE75UPisuEGx2tdaPOLH4qPOztlgGtKHtI0WGKIJ/5kfZoASKOH4Cqc= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.35
Key size: 18 tLx6/A8QUvvvVPDvIUUBzOls8cVB8ryf+eS6dASrtWXo95iRrwxNTPs+E3S5ZpZRDsVVTxHA7trZEpzgFlvzPhwXMxwwyXv5rFZ4OuueS1A= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.34
Key size: 18 nHBgyavdznwFBQ+DHBc9j5wkFvhDJ9aEzmjBRsOknom8EH6jSsqxip1PAfrQleykFusNosSKdIfwr7fJrSFjiSHaws0u3EuA0oXbmADMPNM= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.32
Key size: 18 i8NSZS+GGdn+KoSEI1YQg74g0scTk4Jis7WRL/w0xskcDLax8B52Ravu0qSYvx0aMhK5XBozvf1xgpulirpl0BJ2Lge8cirfG/SKDr8ZK6I= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.31
Key size: 18 f0AJdWagXyUsGJvPr6uYAzAe92YR2QmVNL5BHSUk3fPu3lkE+3dygRFe8v+WU8v07mx0uQkv07Jr7LrkmIA1OCFp8vzgDCPG4h86XjvbnSw= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.30
Key size: 18 PfGRf4/X83dCDix40SmkMXe/xvHp+SpQxatLtu9w71YfwcEPD6X0C9W1xfJk2baej2mDM3d4cA0Y46xO2JyQc/UTOgsAlEoSWMIp8uePAFc= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.29
Key size: 18 nTPXIm7GqTh/yP5ABiuFrjndVDYE0mw52MZsAhMmxpeTXoP4PPKaGd5BoyAoAa0lKfm2L8a9NEHwy93kgWRP/7omp1bKkZQQekmMgpPwy0s= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.28
Key size: 18 fAx+m2xA8kvj04sdfgWMBfIrsKbgBiP6hWO1NvhKUaAJdbHQ9JCJRzQfctPxVjXEUEmFD/hWDnii81xXrjzHnjfb/8PvvL58Mg58H4Cwx8A= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.27
Key size: 18 89a/8x+3bjgQ2SQA3vww/CarZfKgVxavBRm5kk9DtFbdxcb5SE1SJJOyh7i+f0SRDdJiPO1vVxSZf9GxCnNaC+AcW+ohtWCz14Bddrv908s= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.26
Key size: 18 ky6q6IfKG0uZz5cWPJ6uz3muvnztUwCsKLJI5FGW7T2HpwdQALScknXP5A+hi8gsZLymoPXvcL7v6PdrCPkyBiSfER0pom1bF8zAq3CPA3E= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.25
Key size: 18 lTQRiwGx2dSckEcItWksVY8QCRWhhp1hVUvhTNaw5AN9x1zAKr4Q9gDJ1DtD+k1yRmDqUps8Y1W1dzaVxjUV3/HPzjMnifu0nuTGJHt7v4k= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.24
Key size: 18 d0EPdC03ULQRUwr41NiDDbs27LjIY1nEvEaxVOLaMkQT/ZX+WDrAdu5J+iPrrfwtjMO+0fqNZsDvtKMEtEe5m6aaD8Dze/jzOswuFtrKNbw= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.23
Key size: 18 xfhxBdczgfmEUfEvrbsxgS+4bzVNfpAjGtU+ezk33aIPHuyh9yox44sQRwIKiYFdZacgsseIfLoKiXAh1mWodFa/v8wzO7J7dF5w92S+iHE= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.22
Key size: 18 T6hP9fubnJF2oTttW/4EHLU5X4XarfAD0fd53lV/1qqgEdXX1NOs2U7QwPkeQKFmMgDqUjtNvIY8MxnIQgVPBAr0GJsPia/1l6Hl6tb65Vg= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.21
Key size: 18 e4UNgi+rmRkkHhizizciJxDgJmpJIZZYa3m2vayeeryN2dI/R3W252Ys/7nQBhN5zwJfanIBgkQMqiY//H285UpF8sW0eeaZbhKeK2/oL0M= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.20
Key size: 18 JWbFiC7vsm8HGmXA3yd6cmQiOu4FmDfJXGg4cLzsNv2Z7oxrSWJ3VgVQFV5Jm9WjUolviVst7kK6yZJv7/y9y+tx2U/Ed7IsZOTxPOMSdYk= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.19
Key size: 18 pmYk674p2IxIwJeRq/vPN3El1i6ckDKfbkGCbh72i9prafJ03jKpT17DJucqIrPqMzB3hbBd0x1nVhD4J9dLgCHzNU8Bx5mBQyv5C5yJ7Oc= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.18
Key size: 18 IadAQnSKrb9irBc58AunJP2LnsCLS+ag0LdSDadeQqqPYfe6nV1zWyDdKuNtgEd3eMbs5l7sxGFlI9CXjgLmxMgjFLIUvL30Ra4w0CbEmo4= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.17
Key size: 18 gwtgiFoHWeCoNS3t7Y+fLHfMvF3H1gBwR1kHYcMrSzm19j0og+xoR6aIMkXeNXFKI1vjaaUp+RpgcdhF0RZa6uehHw0TdLJ9Ps5eAGV0z5s= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.16
Key size: 18 T4wGYARzzwVT7JAnbSuSnk1VawFrPZ4hVk9YX3Fwuhes08dYdr10Dar76vQX51BA4mS5dHNEIYzk2zSxCpab6m7XIdlVZJsatNIPb6CZFu4= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.15
Key size: 18 t/iXb6G95r1hwvIthCABMRm9vglkPWWeSqfc+CDWLlThj68XP7dA82Jvq4FllPFvtH2IgOQpKSX3eNVfplQ2O3mCDZowUW1n6hNaohhi6i4= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.14
Key size: 18 YYeZIsuhvENeXGRgokKZIcCpwCYNE1/RA4uOcYKb4pAlVdxY6kPYfQSr10vmGCWZz2gt5QbT8wdtxuBjw4rhQpn6oju1w1UDJuM1gt3lXqg= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.13
Key size: 18 ebdPKoY1pP2YJ6ktmQW1xllDwTi9x4C1qZRGdtClCDcPU3bVpEAZ7OwU+zCkF/zTt5IRlTH+fTGvgwFtD0fklVSWs71gb8t0TgTbNDnkLro= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.12
Key size: 18 SL0Vd2FhIU0mVGO25ho5ARtkgGl9uBHU64xH62XSFfW4W/9FbsFSm4HqQRE/moQLRkdSj/3x+RkKHbAw1oHkEdr21QIMafOe3itBHTs8dh0= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.11
Key size: 18 LHM6oZWKjjhjzVsD7fHua3qGam7YyIz1rC7z3DAn/CqWZVqZI+8jlLM8GYFmB4hfR7npogZiGGBxbptgT34hij3oSsTbEF6axKpMTQXsEyA= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.10
Key size: 18 9QirJPFPEjJ0ISsiQNluUE4CAh3lEmKIXEjis54r9X+uBXOMfSx91LHiryQTncdAp7jrW2V81abzKmVl8n2iRjp7XmjcLcQmHkgHjI6N/14= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.9
Key size: 18 thRA7bDIBBr0Z8T8qgDjzBYrSMcTzJzzqH1oX4e52jCWli4pdGDG+n9jhlKa6hbYW8QvC8cvncnVZMhmpWG3HPxD6VmKhn2/M4M9fU+ScIs= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.8
Key size: 18 FDY4Stah8kTyddxL433MUvFIa+2IBfKbkakk1s9hZm/XY55JMaT/Mfy7x7Y8bP2blBOoHOZr98EltU864GuTHbeWMNz922iQfJzQrLkA/s0= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.7
Key size: 18 qJkXdgar6EixH1LNPNve6IetBR+Lk4KHTD17QrRvBF8aQhfWDSijCnvR64sBhmV6I0t55a60Go5bDkLrF3tmr81rpHdT7uxxpmxlrlCO1uY= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.6
Key size: 18 I08p9+6plbZXyA5U8Dyzj2htKJqmWlZIz4l0yM154QHI3lpLBfO1/c8E8eZfzXZCRVCsip3EQ55/dv6/to8YGqtUUhynnQUxnKZECZtpcuA= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.5
Key size: 18 VHcLryV2XpbBdfeylJXWUUGOBF++Nbd87Xbz5tiziYCeKZ8vufI4n8+c6PPQpHpDbjuS1zwoKB5u/E+vpy+PyxKK6VhxdFrPNQvXKE0OyQU= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.4
Key size: 18 XRCrX6TEXJ7C++hYacSDReVm8Bu8/Z90+U4xc8JNCsuZvfzysmtOF+YaUmbycyfuFr/eat1rTdcVQuENWiQIi4XJmA6FFS/2dW8KoXD2BEQ= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.3
Key size: 18 e96e7bWWLO1rI/YyV0bohOy9PTd8A8kTNiLVFwrVvKg1U6hqzSJnp7Jkhpi46KqsztWbw5ukZhk+/fn0f5Gi7zepby0WQquePH7iSoa0VQE= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.2
Key size: 18 TZLHhGzHq+dePBvULKt+hR1wMeKItfjqVYNYvOLZV5vqmTQb74v1IS5UUZ+T+0jk5jm9/BmXS79XpsW960JWF+xIwt1WO3lPEecMzQALRKQ= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.1
Key size: 18 bePus0hUMoH0ldBFq8EJSI1+EdmLcKGOK4vGZFQwF+u4R4e7I2ry/SBCFRvOrCPY4d5RKTlx9tlmQDZJODfHpuZu9EH6YJ9NoqeycvJAo38= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.0
Key size: 18 kjUL12crcYrs9e3BZrDnYWSGJW4RN6JJvIshiJcNuQg2Xod6F9xVBUrscO4hddHAdAuUZgzSnISo1vkWjT75m+O+jkFWVtTIGz8mDC/LCLA= This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 4.4.5 - 4.4.9
Key size: 18 Fatal error: Call to undefined function: mcrypt_get_iv_size() in /in/d4mg0 on line 17
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Key size: 18 Fatal error: Call to undefined function: mcrypt_get_iv_size() in /in/d4mg0 on line 17
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Key size: 18 Fatal error: Call to undefined function: mcrypt_get_iv_size() in /in/d4mg0 on line 17

preferences:
245.81 ms | 401 KiB | 311 Q