diff options
author | friendica <info@friendica.com> | 2012-06-24 00:56:27 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-24 00:56:27 -0700 |
commit | 7f3813e9b066ab7290963e378dafd010de5416fe (patch) | |
tree | 6e627326f419d1888940cdaa0ffcb3fa5858b57e /mod/dfrn_confirm.php | |
parent | 49ecf581630f8f5572c52c17edd4b6eeef2f27e5 (diff) | |
download | volse-hubzilla-7f3813e9b066ab7290963e378dafd010de5416fe.tar.gz volse-hubzilla-7f3813e9b066ab7290963e378dafd010de5416fe.tar.bz2 volse-hubzilla-7f3813e9b066ab7290963e378dafd010de5416fe.zip |
service class basics
Diffstat (limited to 'mod/dfrn_confirm.php')
-rw-r--r-- | mod/dfrn_confirm.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index 76b99cbca..8e39f5fd0 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -146,7 +146,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { */ require_once('include/crypto.php'); - $res = new_keypair(1024); + $res = new_keypair(4096); $private_key = $res['prvkey']; $public_key = $res['pubkey']; |