aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-08-19 14:34:28 -0700
committerFriendika <info@friendika.com>2011-08-19 14:34:28 -0700
commit8e24db3ef5c0bd15aba50aa48fd4745fe7191dbb (patch)
tree85aedde5cc6f3a21b8b0afacb00c4363f954c358
parent18c8f4d8b57988ce5e22c261d7ab9d73aa2a3dd5 (diff)
downloadvolse-hubzilla-8e24db3ef5c0bd15aba50aa48fd4745fe7191dbb.tar.gz
volse-hubzilla-8e24db3ef5c0bd15aba50aa48fd4745fe7191dbb.tar.bz2
volse-hubzilla-8e24db3ef5c0bd15aba50aa48fd4745fe7191dbb.zip
incorrect iv length for blocksize
-rw-r--r--boot.php2
-rw-r--r--include/crypto.php2
-rw-r--r--include/diaspora.php4
3 files changed, 5 insertions, 3 deletions
diff --git a/boot.php b/boot.php
index 821e74672..0992f6b53 100644
--- a/boot.php
+++ b/boot.php
@@ -7,7 +7,7 @@ require_once('include/text.php');
require_once("include/pgettext.php");
-define ( 'FRIENDIKA_VERSION', '2.2.1076' );
+define ( 'FRIENDIKA_VERSION', '2.2.1077' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
define ( 'DB_UPDATE_VERSION', 1081 );
diff --git a/include/crypto.php b/include/crypto.php
index 1ab9e7b25..6b27e832b 100644
--- a/include/crypto.php
+++ b/include/crypto.php
@@ -182,3 +182,5 @@ function salmon_key($pubkey) {
pemtome($pubkey,$m,$e);
return 'RSA' . '.' . base64url_encode($m,true) . '.' . base64url_encode($e,true) ;
}
+
+
diff --git a/include/diaspora.php b/include/diaspora.php
index b14c38f1d..2e8ff6892 100644
--- a/include/diaspora.php
+++ b/include/diaspora.php
@@ -30,12 +30,12 @@ function diaspora_msg_build($msg,$user,$contact,$prvkey,$pubkey) {
$inner_aes_key = random_string(32);
$b_inner_aes_key = base64_encode($inner_aes_key);
- $inner_iv = random_string(32);
+ $inner_iv = random_string(16);
$b_inner_iv = base64_encode($inner_iv);
$outer_aes_key = random_string(32);
$b_outer_aes_key = base64_encode($outer_aes_key);
- $outer_iv = random_string(32);
+ $outer_iv = random_string(16);
$b_outer_iv = base64_encode($outer_iv);
$handle = 'acct:' . $user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);