mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-17 04:15:15 +02:00
keychecks
This commit is contained in:
parent
9115e9c90b
commit
11ca81adba
2 changed files with 7 additions and 1 deletions
|
@ -849,10 +849,12 @@ function dfrn_notify_content(&$a) {
|
|||
openssl_private_encrypt($hash,$challenge,$prv_key);
|
||||
openssl_private_encrypt($id_str,$encrypted_id,$prv_key);
|
||||
}
|
||||
else {
|
||||
elseif(strlen($pub_key)) {
|
||||
openssl_public_encrypt($hash,$challenge,$pub_key);
|
||||
openssl_public_encrypt($id_str,$encrypted_id,$pub_key);
|
||||
}
|
||||
else
|
||||
$status = 1;
|
||||
|
||||
$challenge = bin2hex($challenge);
|
||||
$encrypted_id = bin2hex($encrypted_id);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue