-
-
Save bosskmk/e64ac7d3ae860dcda18c to your computer and use it in GitHub Desktop.
AES128 encrypt/decrypt in PHP with base64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
function aes128Encrypt($key, $data) { | |
if(16 !== strlen($key)) $key = hash('MD5', $key, true); | |
$padding = 16 - (strlen($data) % 16); | |
$data .= str_repeat(chr($padding), $padding); | |
return base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $data, MCRYPT_MODE_CBC, str_repeat("\0", 16))); | |
} | |
function aes128Decrypt($key, $data) { | |
$data = base64_decode($data); | |
if(16 !== strlen($key)) $key = hash('MD5', $key, true); | |
$data = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, $data, MCRYPT_MODE_CBC, str_repeat("\0", 16)); | |
$padding = ord($data[strlen($data) - 1]); | |
return substr($data, 0, -$padding); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment