]> git.mxchange.org Git - friendica.git/commitdiff
Test with OpenSSL
authorMichael <heluecht@pirati.ca>
Thu, 30 Mar 2017 23:21:52 +0000 (23:21 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 30 Mar 2017 23:21:52 +0000 (23:21 +0000)
include/diaspora.php

index 3250fb3da59cf0e28d7628122e34a9bdabf74706..29278349f1dd6fc1bcbbd0a2f470c38934ab4c67 100644 (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;