diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/crypto.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/crypto.php b/include/crypto.php index 4b78bb63d..df4347f22 100644 --- a/include/crypto.php +++ b/include/crypto.php @@ -67,11 +67,13 @@ function AES128CBC_decrypt($data,$key,$iv) { function STD_encrypt($data,$key,$iv) { $key = substr($key,0,32); + $iv = substr($iv,0,16); return openssl_encrypt($data,'aes-256-cbc',str_pad($key,32,"\0"),OPENSSL_RAW_DATA,str_pad($iv,16,"\0")); } function STD_decrypt($data,$key,$iv) { $key = substr($key,0,32); + $iv = substr($iv,0,16); return openssl_decrypt($data,'aes-256-cbc',str_pad($key,32,"\0"),OPENSSL_RAW_DATA,str_pad($iv,16,"\0")); } |