<?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*', "bcb04b7e103a0cd8b54763051cef08bc5");
# 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";
?>
Key size: 17
Fatal error: Uncaught Error: Call to undefined function mcrypt_get_iv_size() in /in/af6h2:17
Stack trace:
#0 {main}
thrown in /in/af6h2 on line 17
Process exited with code 255.
Output for 7.0.5
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
0GERXBffPiuo6pxn9Uj29g==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 7.0.4
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
96hK5PUn9ipBijNYfKbfsQ==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 7.0.3
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
Wfx7jH/q1r2gWC2wYw8Fhg==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 7.0.2
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
+XNgAhbzGml+R8FqDAckeg==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 7.0.1
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
5h3ouBjd1heLm81+uTPxCA==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 7.0.0
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
Oj4CsqHg/N2kfS49RYv2Ow==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Key size: 17
Fatal error: Call to undefined function mcrypt_get_iv_size() in /in/af6h2 on line 17
Process exited with code 255.
Output for 5.6.20
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
I0UN5phxrvshE63qWYTRag==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.6.19
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
wjkKUdjrrHsiASlYbS4dUg==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.6.18
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
C6hMXwzq733E8yDNJtbErw==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.6.17
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
CDnUBrjj+o+lRQZvVKoPgQ==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.6.16
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
5Ercm4/euq7c1VtcDgfg5g==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.6.15
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
We5JFgmMbEc9foT0xDFOCA==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.6.14
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
k9qaQuJIzn52RH4zRhPUAA==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.6.13
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
MTArfBaQJktJ8oE8p/G7XA==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.6.12
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
MltLBmmhoh6o2pg9r07M2w==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.6.11
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
lVVmQf3wyxBeGhRR+M5o0w==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.6.10
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
Vo0Vf53qZPW6Yt9eHIsqUw==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.6.9
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
hrVOFLW53opEhmNAhRqkjA==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.6.8
Key size: 17
Warning: mcrypt_encrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 25
19pcgv39NPH0XDgCFb50iA==
Warning: mcrypt_decrypt(): Key of size 17 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in /in/af6h2 on line 52
Output for 5.5.34
Key size: 17
HRCO14XWRZpvxhC4cHU19gOjh5DVXotzMMRVuJykPte1iq4HNrxkAJelKyIivCLFk4gMP3dqHEcLkvSupngs1FVnFSOVTrCbMg5utp9gmkg=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.33
Key size: 17
HjZ8e/Pw2DxzfOggs/7kgmgLB4bPT5UQ5lcaU9Ij9SWYtbOjT1lrm5dF2KzG7RSHLBBIXubjZDUbcGNslD+oOht+t4v79D88zok0BsfVCUo=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.32
Key size: 17
pK82+VlAHBjmmXgKPQwqE8j6mHvpj/qEcq25bJDsCFn0jiAX0h+zwCVaOj+k8XoGcyYgksFPp+CW64cWuUjgeMFGcKd9p+nQb1yTVBhic9M=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.31
Key size: 17
UHwtc9xuY8HUbpSN+mQ1nBKuWU5or6Fhk9mQB77BfrlAn0c5/ncR1rBHzP/MByrld0/Lbn2OQo7KVW3rSuh967ejvfr2Dt9nSV6TIimfHtg=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.30
Key size: 17
ZRYI7HuALlCH9a0EYBhb8PM1CUco81FGXl//fPPd6ANcP2a/MOhCaGyA/hrWjp85GbI0OuoY97PhuL7+rqL0QnAfcG7O7r8MngA+QWU/mvY=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.29
Key size: 17
D99UiIjPuzFdR8iM4bIfUJeDcoXxO2Z6CuG0B5GTMKQKV9uBESzp2ffvjasKFIiCSpK/zarq9b1puAvqz3iJn5UqfF4kjU/DoyCed742g18=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.28
Key size: 17
AdrXK97cJuS1OqKXuguxPLKCywgXfMejcRV4qMXhuoUaVixSCROxqXXnTxFhAoXNwlVJhqavDHv9anH8u8RcxtaAcRah3EEHPTzii02nkfA=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.27
Key size: 17
SUmjbrZ+qaocpMLAoNfZ1HOebCFJ+ngs+562WvVTQ3SjfQ9Z9GCGY00kW/HinpFBXalJWEgKStpLOWSTdoRBC85oy8hNIQUL2jDkmIZA1lE=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.26
Key size: 17
AgWJq2uRFuxn9sX6ZTY/KbeKmv3vHgQGssjNJJtGJd/ANhPadPyxVCXKgYfLffqap8w3ynP5DBONf0N8rMRHJGV47OgEsJWg3leBLozaCZQ=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.25
Key size: 17
yk6xKzvIPRpcrF3zAD+4eIkMB0JTYzEgh5ioz0swHzaBYzHfm3WnYEZBvSY6MDHRW1ESZB+ZVr8UJxKTMK93TX3UjAG8wJK7OeFBSYVK77M=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.5.24
Key size: 17
i9mmO9M6/NdbW7wOkv1RhiHYXfHZM54aD0FIReCpEmUKRJHHKC47rnrEXRWYCF5NeOepZdb26TdvFrdw0F7YRWw+5eUAtLjR+5h57hRrq2A=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.45
Key size: 17
Jojola2ucGTsgjRePGcR0CBPsy8JOK0PG6z8oT2b+aNkJgcZER2mh3yF+dgxuVrvucQYnC45LCAv+9DeXeo4SL8Xgi1EcK31Wm7JUBWQv5o=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.44
Key size: 17
tobH5LKoVchX5a5mV58ryMCpXghZhy6j3WrxidHTmzI7f0r44jkOsBkavWSD6CKMXQD2KHxDwui2YmIu03PSdkZ4bBwS/ssyOfA+6R1QzQ8=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.43
Key size: 17
4+q4y51GnphZVN+1DPHgq1M7sWbbuCfLA4H9PV1+agK3sId0NrLBS6ZzEpFjdkAG+467VxWb7dVTxFuJ0LHGam5amSVYKvm/CW5BeS7u9mo=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.42
Key size: 17
5pz1tIZDMDCUxFOxgOX4y5xSfpphoFvEH9DPaLK1ufHbxKKxeaEaSJPsHUzQEtv2feiPr0QUFavKCrx8zKNiZIe6S4cCm6VivvujtxgI6DA=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.41
Key size: 17
SyReBozDHuuDUuyBCdIpdVdHMULgrqd7aAUDo7icfT3dM2eQmvhlOJEOyZ6Hgg4fHCF/V8SSWz0XMxUC2a58wBipa3tA1ljDw36EoP/NrQM=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.40
Key size: 17
g7GBHoODr38gsoC6fq2WfidapBpCmmvA+2MMuJ0kOSFsb+FKdMSlhllqpjIKB+vYoCLJdlruKdlUeYyJ9mvkbadtc94j11IERgpIhNXphyg=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.39
Key size: 17
urDHVDBHo4KaLocWS4x3JqmRTQUnoM4mRYprR1FrPbfVXTRVG4CHh15osr92/29XYBHxIC1unDguNx8gfsjPExFIhh+6m5ezykbJbEIOVgs=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.38
Key size: 17
M/y0h6a8uRKEZlXx45bHIXXaXVZglngBCy+Efn/If/iruiUxcBxxx1OH4iHXjKtJDNe77jwTuKGKcTTZAO0HGkWuOUGbFaFTCuQT7KDVar8=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.37
Key size: 17
KquSrJsOjYifoke3oIzbQcUqjQ4CmUnKZiUS8rJkF6vCfYTy21CIl2uxvYfAXpdQ51Iao/RNemG76lzIliuIZOBZfHkyQ8VBJz2fxWjSxRA=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.36
Key size: 17
VrCPA+rnTFsvQmzvaLOwnOg3avlfVuIhH0pm8y/Q0ZApEXakjiOd2hOqLp+RGYSteWPfDejmdLktmqNlsi9e0VmD/A9i5jvNaumdeFh2eVg=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.35
Key size: 17
VRG+CVPoYUAO1GnUKjLbubkqKQlTZs/8v5Y86bDpdIUxZPsCKpYm4Va15JjqgbJUuZ2yPX1Ldbw2IaNtW+tsuaWH58UKNshWQRBLdIKSZrY=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.34
Key size: 17
KQsgfNQ6W9OfYHyWhzIoM14w7lnVJP1vlk0n3L0ROzvAhfE1cTMOkooiL8K9Ux7wCspwgBuTjmG2dPoPpjlhrc92uy3slG/riupt7ihWpik=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.32
Key size: 17
4ay/Fi652yEbiwBJu+ZZhhuxSX3Zhuzy8ItVwJwsTz8DF/L6dv9nBlODn/ifDKGb+TTh8zyxhmIvDurTsGOBnjRMr6P45X67g1ayGbGD/88=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.31
Key size: 17
vJj8LTgAG030V2JLbtL7pBRHNlKM7gog61HpwRhloLEN7AX1iM2D4g/Yrjs8O3bWoL7f2m6CBU8TOGfSzeuaom5rhS5nMLZOFnYelyL1H8k=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.30
Key size: 17
baTdkZwr4Id4zOqWq8MQjiChLIdV+LGcITUZiiNGXjdzU9UZJJ76s0Z+Ia7eyzmDK/BYe9YCUNojLnJ4AIngAWzAwVAOiXO3vZk1qBk6uRs=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.29
Key size: 17
vGDGAlrWIoMCGsMwDHgDnwp2IqsqBEgrp8kXKewubxn3SDSNTWjRTa3zVmy8z8rRH9dzD8tOEgEkSjSDsUvb/upiEg6U9KuofXtY3gB9zn8=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.28
Key size: 17
b7cd8PeB1jAWLQCz++U+cLNka/7JxJpkNntVqqIa1MaDs/v3fxLXEdSUufLFG/ezC7JQl4yZ9WcDcT5Ttqqyf5tCXfF9EEBFupkDlCasc7s=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.27
Key size: 17
7yh6zpmKG9FFV+wCB50f5+rZE+bsE5fYCcojSIPbZ4/4ayiWCFcqpty2d678bYjnrKNX2Ub4Oo80D3ECtbRo4hO0Z+m+iuoCZiG+JFdbya8=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.26
Key size: 17
RQyDKsn2gM0qrt7vgUazwuHau7OcQpCrBO/Ab50GoQMmkWPLtzTBGtN3kAjxmuoDjn48/Tt/ffa3OdD8rb8cHYgbfwYU5sP0S/hx/0sduBs=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.25
Key size: 17
Trm9hC6sh+1HvMnPrbwATdKAjWg8dWS3zXrldfizCOKxpydzTn1UAEdSl0sYtxAXCnnrQxL5PQdpYkTdaw+NuppLjF+3WfH08ke7EmzQScM=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.24
Key size: 17
j+nqGzu4wZbctk6lSZtYJd/Uk9GVRfmXizXBDXLdgB0UexDCXfdHeNmYtGtd4FZ5b2bip9E3Q2WHNIuGk2EsyihkaC5Gfq6Q+3MHTZvrNEY=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.23
Key size: 17
P6liC0wu6P4Er7hx7mr4tnzeW2g65k7h63W9W7JIOoNFddAffF9pjiq6UxjSYHlEalWsmOMJO8WA332/Cqhae/LsS7nxHscdpFFXn0fqLfU=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.22
Key size: 17
5eqEJkLLU+0DvSHe15VUHEfagM5jgMdmbZDrm4IAatThflG0dR4CFf4pdHTRPKkV95cCyWwfqJEsTj88tsVryLXkgBxXNzhth0hwkVprfl8=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.21
Key size: 17
DgGQOgHfjvq8G6/qUAUAZ1OW2HP3Jrm98SZHA5gsZ74XbKSr4bfjjzmNuYGbAXeiPO8dH3V6uGgLvEAYWx6t0Vhpd8CFiThcSuzTjSs5ojc=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.20
Key size: 17
Nvpk0iwhyXkIWpcJSvUu4LzkUr4lc53Q0SIhczteN0Pg7KEhJLbtcyB9ogjzj25QQfObDSZEvAsFsUrvIZCYYhTLDyLeoyi+tTfjdmNd5wI=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.19
Key size: 17
FkCcqGNmH9zsPjoKyQU60+KlHLNse0R+3Mjp4g8Tj8SiiHpxjRl0DiGMluwZwNbs0Ip6OWjTCxpuW7mlE0AeQLTLOVDRMr2Ln6qIYvrtdkU=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.18
Key size: 17
t9zDUpd6UTNXQ96+Elffj62oTHkK3bYXNooRIeJ/11wBrEm7LM2HHEqCc/t9J3L+WLokjWUyJGaDQj0zhtYigEdA/Xjm2aN3SkH4UNOmxm8=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.17
Key size: 17
dSQ11HdF3HpXMXis5gZwojWzBTOuJ9/PSNrwYErRHiqgj/4p3dtEHX4xAehmtCPb74TJqyizyMaJtwsiCpNgfTfwp6NV+Mu83G+0OpjcAPU=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.16
Key size: 17
XX501f0q6q7oSSXkfFUjS6q2DjT6mGlmL3FlVbr3sN3X9zObX7BEh1Chna3zyYIw/SEw7OAUO0StIS5h5T79XO8nQe2EqxzKVG5VOYKALkc=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.15
Key size: 17
WOtfKHbNKlg9UYHVaFN4NWLRfjo1vjDsmcCsWM5n1RNEj4/G9FcR/Kbq+NTN2YZqhkSRTihW0taHu9pC/SibnMPmc2H0vN5C31FHjFWLnQ0=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.14
Key size: 17
8fbb1pTq5hD+nMrFa3JHyJa6O4RD9Sxp/6iELW3TlZJfsTz/9hTZjVNxFVYuvir8zWltgRmaIEbCxMCrHK6EZhJfabsXPZp4q0+egf3K3h0=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.13
Key size: 17
vFg22icBs0DOgB3iX77nQzwkp6pQR3EZWm4aHlvxlFslzXMAfyjTddeNCCHxQX1cxGkFqskJemOf3iePq4qQfSAX9MNtRB3ZQvYAphvNdwA=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.12
Key size: 17
uUTieP2HBNoUdY59z02YmN/brsMC70y60Bb95BwPQiPE73WGJJZp+p5ZkONJfTl9bM+UNk0a/40o2dFr4E3Q4TcPHlJib3Z+NCgxLXXAinc=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.11
Key size: 17
r6Fbw92Pr+R1+lMJ2P0LFqxqrrIdhR6Hco5pq65EmpERmzLBBEMcSyA/U/coh9Pejj3r0oFx2Mdtv9d4e3ERIoo/Bvos2VNbKxwQEIFXmnc=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.10
Key size: 17
h8xYz4XeLAlQuZM0X7UATbdM+7VTueWB88Ewxo21ylUkofHXBMB88VUTCWmDHyS1Kki8F4OpGDss0EjaLmha33tHigfwz+Ty1zO3ejybow4=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.9
Key size: 17
+a/JEM1PMSCvr/lt+gLg0cROCwdBj7rZhm8u24KkM2BInMrU0gT/cWbuq4cVbTH6PEoTRiqLl9y8KDf2Xp5xPReI46Kp7rnbXiFEuenyR8I=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.8
Key size: 17
NpR2DhuADGjI/AR1VLuBs03mDkJLdSLpDrdCIL1/tCl0EQ7i5iKzixmiAgyP67+LiHrxjggbOBdugesJYMvpt8OI905KXp/eB6rc3p1BFMQ=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.7
Key size: 17
zhwTcfh4eEix2tiW6yqMuQgqHH953OTdAKMIV+EdpyzzKZliHSNPeFDSOYSCyD9YaQH9u90LrG+uUbpt2i2Z+mr0OJavHti3Gh3EdGo0HKs=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.6
Key size: 17
rA9uc3hANTTzTcd3oXk2AId3JqDl/AUo39MX2ki7R0KbCXw8fYG2szxlHSNnGpkqBDWFDKBD+dgfstOqE0//3FV53zjUa2cekn4e2mbrJlo=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.5
Key size: 17
CaeC1D6CvtExd+k/FNsfmO/MLiBgY/tMfbGAhhvHvxuyu+SFRbr5tZxOJ0cEMwVa7WYtsb22mEoNtoJ4H8R8mw1Ua0NAg92jQFU3JYYZW+4=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.4
Key size: 17
Ehz+/ZNiiYsQbiH+VzVrJK89mf57ev8MNxA6Kv5zL9OdEGSbi69shGYkaM9PinG6uM7+7mt/7R9MzgBD48jV2cynWk3yU79Sjf4gbWULHB8=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.3
Key size: 17
kNbLyP3wb37hTUPxVOesc1dF4qh2XL2f72YbORNtRjTqDBSA8CJ9y1csWyWPS0l0iKWWTchff/h9hl8k8KV+cPLjp86TYysutlnf6KzZrHU=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.2
Key size: 17
yoCym1YhDbbWb85d3Y1cEXaIauJWbAfMGDr9CzktSlGu8WLh6E7cK2m3pK+eES9cx5LfrWgwitY7RvEljy+3R5Rv/xKXp6YuS5MnUeZ1LxQ=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.1
Key size: 17
YN9FP02El9U0MrVY4/XXxP4W6xwlVc1VbO+fdj2CEFK7v4YawbWQRVE6xh99mlIh4HbYqVVRujGL/vekLcGbDs9DSJUhyK/9/zHi8pMSfcs=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 5.4.0
Key size: 17
Iu70oP4/czFUFCUVkWD9J9bjP4dhfhm713MX0pQRa72t4m203znXKTVSu5RlHgiM+6Lo7TmMcLO9GqYrUf4J9TjzFcJSiTnmstv3gA7897A=
This string was AES-256 / CBC / ZeroBytePadding encrypted.
Output for 4.4.5 - 4.4.9
Key size: 17
Fatal error: Call to undefined function: mcrypt_get_iv_size() in /in/af6h2 on line 17
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Key size: 17
Fatal error: Call to undefined function: mcrypt_get_iv_size() in /in/af6h2 on line 17
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Key size: 17
Fatal error: Call to undefined function: mcrypt_get_iv_size() in /in/af6h2 on line 17