Test with OpenSSL

This commit is contained in:
Michael 2017-03-30 23:21:52 +00:00
parent 54c8fb2bb8
commit 973fcd3624
1 changed files with 4 additions and 0 deletions

View File

@ -171,6 +171,8 @@ class Diaspora {
* @return string encrypted data
*/
private static function aes_encrypt($key, $iv, $data) {
return openssl_encrypt($data, 'aes-256-cbc', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0"));
$aes = new Crypt_AES();
$block_length = 128;
@ -199,6 +201,8 @@ class Diaspora {
* @return string decrypted data
*/
private static function aes_decrypt($key, $iv, $encrypted) {
return openssl_decrypt($encrypted,'aes-256-cbc', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA,str_pad($iv, 16, "\0"));
$aes = new Crypt_AES();
$block_length = 128;