diff options
author | friendica <info@friendica.com> | 2013-11-20 15:20:12 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-20 15:20:12 -0800 |
commit | d7ee552c570f4fca760c3d1573f32c005cf73bb8 (patch) | |
tree | a5020a1a27472fe889d773a5e4e2b410930ceda7 /mod/message.php | |
parent | f6c41e61ace7260dde49125487f9ec7142f48e4f (diff) | |
download | volse-hubzilla-d7ee552c570f4fca760c3d1573f32c005cf73bb8.tar.gz volse-hubzilla-d7ee552c570f4fca760c3d1573f32c005cf73bb8.tar.bz2 volse-hubzilla-d7ee552c570f4fca760c3d1573f32c005cf73bb8.zip |
Protocol: now set data['alg'] on all encapsulated encrypted packets, so that we can more easily retire 'aes256cbc' once it is no longer viable.
Diffstat (limited to 'mod/message.php')
-rw-r--r-- | mod/message.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/message.php b/mod/message.php index f992a6fa1..a0382f63d 100644 --- a/mod/message.php +++ b/mod/message.php @@ -79,7 +79,7 @@ function message_post(&$a) { $global_perms = get_perms(); if($j['permissions']['data']) { - $permissions = aes_unencapsulate($j['permissions'],$channel['channel_prvkey']); + $permissions = crypto_unencapsulate($j['permissions'],$channel['channel_prvkey']); if($permissions) $permissions = json_decode($permissions); logger('decrypted permissions: ' . print_r($permissions,true), LOGGER_DATA); |