more cleanup

This commit is contained in:
Zach Prezkuta 2012-06-16 10:45:26 -06:00
parent 577cfdd314
commit 3132ed2979
1 changed files with 0 additions and 15 deletions

View File

@ -1866,21 +1866,6 @@ function diaspora_signed_retraction($importer,$xml,$msg) {
}
else {
/* if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
$person = $contact;
$key = $msg['key'];
}
else {
$person = find_diaspora_person_by_handle($diaspora_handle);
if(is_array($person) && x($person,'pubkey'))
$key = $person['pubkey'];
else {
logger('diaspora_signed_retraction: unable to find author details');
return;
}
}*/
$sig_decode = base64_decode($sig);
if(! rsa_verify($signed_data,$sig_decode,$key,'sha256')) {