]> git.mxchange.org Git - friendica.git/blobdiff - include/user.php
Don't update the conversation only because the source changed
[friendica.git] / include / user.php
index cd77707dd0bbc602cf2cad59beab1d572aebe9da..973d6b8b1f808b3bbd46ccd0675885d6e8e62ae0 100644 (file)
@@ -175,17 +175,7 @@ function create_user($arr) {
        $prvkey = $keys['prvkey'];
        $pubkey = $keys['pubkey'];
 
-       /**
-        *
-        * Create another keypair for signing/verifying
-        * salmon protocol messages. We have to use a slightly
-        * less robust key because this won't be using openssl
-        * but the phpseclib. Since it is PHP interpreted code
-        * it is not nearly as efficient, and the larger keys
-        * will take several minutes each to process.
-        *
-        */
-
+       // Create another keypair for signing/verifying salmon protocol messages.
        $sres    = new_keypair(512);
        $sprvkey = $sres['prvkey'];
        $spubkey = $sres['pubkey'];