mirror of
https://github.com/tecnickcom/TCPDF.git
synced 2025-04-04 06:12:29 +02:00
Fix AES128 encryption if the OpenSSL extension is installed (#453)
* Fix AES128 encryption if the OpenSSL extension is installed * Simplified code Co-authored-by: Nicola Asuni <nicolaasuni@users.noreply.github.com>
This commit is contained in:
parent
9ce48756af
commit
cd683e3d83
@ -449,8 +449,12 @@ class TCPDF_STATIC {
|
||||
$padding = 16 - (strlen($text) % 16);
|
||||
$text .= str_repeat(chr($padding), $padding);
|
||||
if (extension_loaded('openssl')) {
|
||||
$iv = openssl_random_pseudo_bytes (openssl_cipher_iv_length('aes-256-cbc'));
|
||||
$text = openssl_encrypt($text, 'aes-256-cbc', $key, OPENSSL_RAW_DATA, $iv);
|
||||
$algo = 'aes-256-cbc';
|
||||
if (strlen($key) == 16) {
|
||||
$algo = 'aes-128-cbc';
|
||||
}
|
||||
$iv = openssl_random_pseudo_bytes(openssl_cipher_iv_length($algo));
|
||||
$text = openssl_encrypt($text, $algo, $key, OPENSSL_RAW_DATA, $iv);
|
||||
return $iv.substr($text, 0, -16);
|
||||
}
|
||||
$iv = mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC), MCRYPT_RAND);
|
||||
@ -471,8 +475,12 @@ class TCPDF_STATIC {
|
||||
*/
|
||||
public static function _AESnopad($key, $text) {
|
||||
if (extension_loaded('openssl')) {
|
||||
$iv = str_repeat("\x00", openssl_cipher_iv_length('aes-256-cbc'));
|
||||
$text = openssl_encrypt($text, 'aes-256-cbc', $key, OPENSSL_RAW_DATA, $iv);
|
||||
$algo = 'aes-256-cbc';
|
||||
if (strlen($key) == 16) {
|
||||
$algo = 'aes-128-cbc';
|
||||
}
|
||||
$iv = str_repeat("\x00", openssl_cipher_iv_length($algo));
|
||||
$text = openssl_encrypt($text, $algo, $key, OPENSSL_RAW_DATA, $iv);
|
||||
return substr($text, 0, -16);
|
||||
}
|
||||
$iv = str_repeat("\x00", mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC));
|
||||
|
Loading…
x
Reference in New Issue
Block a user