2018-09-20 23:45:23 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Util;
|
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2018-09-20 23:45:23 +02:00
|
|
|
use Friendica\Util\JsonLD;
|
|
|
|
use Friendica\Util\DateTimeFormat;
|
|
|
|
use Friendica\Protocol\ActivityPub;
|
2018-09-26 19:24:29 +02:00
|
|
|
use Friendica\Model\APContact;
|
2018-09-20 23:45:23 +02:00
|
|
|
|
2018-09-23 11:20:25 +02:00
|
|
|
/**
|
|
|
|
* @brief Implements JSON-LD signatures
|
|
|
|
*
|
|
|
|
* Ported from Osada: https://framagit.org/macgirvin/osada
|
|
|
|
*/
|
2018-09-20 23:45:23 +02:00
|
|
|
class LDSignature
|
|
|
|
{
|
|
|
|
public static function isSigned($data)
|
|
|
|
{
|
|
|
|
return !empty($data['signature']);
|
|
|
|
}
|
|
|
|
|
2018-09-22 00:31:33 +02:00
|
|
|
public static function getSigner($data)
|
2018-09-20 23:45:23 +02:00
|
|
|
{
|
|
|
|
if (!self::isSigned($data)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-22 00:31:33 +02:00
|
|
|
$actor = JsonLD::fetchElement($data, 'actor', 'id');
|
|
|
|
if (empty($actor)) {
|
|
|
|
return false;
|
2018-09-20 23:45:23 +02:00
|
|
|
}
|
|
|
|
|
2018-09-30 10:14:05 +02:00
|
|
|
$profile = APContact::getByURL($actor);
|
2018-09-22 00:31:33 +02:00
|
|
|
if (empty($profile['pubkey'])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$pubkey = $profile['pubkey'];
|
|
|
|
|
2018-09-27 15:31:32 +02:00
|
|
|
$ohash = self::hash(self::signableOptions($data['signature']));
|
|
|
|
$dhash = self::hash(self::signableData($data));
|
2018-09-20 23:45:23 +02:00
|
|
|
|
|
|
|
$x = Crypto::rsaVerify($ohash . $dhash, base64_decode($data['signature']['signatureValue']), $pubkey);
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('LD-verify: ' . intval($x));
|
2018-09-20 23:45:23 +02:00
|
|
|
|
2018-09-22 00:31:33 +02:00
|
|
|
if (empty($x)) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return $actor;
|
|
|
|
}
|
2018-09-20 23:45:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function sign($data, $owner)
|
|
|
|
{
|
|
|
|
$options = [
|
|
|
|
'type' => 'RsaSignature2017',
|
2018-11-08 14:45:46 +01:00
|
|
|
'nonce' => Strings::getRandomHex(64),
|
2018-09-20 23:45:23 +02:00
|
|
|
'creator' => $owner['url'] . '#main-key',
|
2018-09-22 00:31:33 +02:00
|
|
|
'created' => DateTimeFormat::utcNow(DateTimeFormat::ATOM)
|
2018-09-20 23:45:23 +02:00
|
|
|
];
|
|
|
|
|
2018-09-27 15:31:32 +02:00
|
|
|
$ohash = self::hash(self::signableOptions($options));
|
|
|
|
$dhash = self::hash(self::signableData($data));
|
2018-09-20 23:45:23 +02:00
|
|
|
$options['signatureValue'] = base64_encode(Crypto::rsaSign($ohash . $dhash, $owner['uprvkey']));
|
|
|
|
|
|
|
|
return array_merge($data, ['signature' => $options]);
|
|
|
|
}
|
|
|
|
|
2018-09-27 15:31:32 +02:00
|
|
|
private static function signableData($data)
|
2018-09-20 23:45:23 +02:00
|
|
|
{
|
2018-09-22 00:31:33 +02:00
|
|
|
unset($data['signature']);
|
|
|
|
return $data;
|
2018-09-20 23:45:23 +02:00
|
|
|
}
|
|
|
|
|
2018-09-27 15:31:32 +02:00
|
|
|
private static function signableOptions($options)
|
2018-09-20 23:45:23 +02:00
|
|
|
{
|
|
|
|
$newopts = ['@context' => 'https://w3id.org/identity/v1'];
|
2018-09-25 23:18:37 +02:00
|
|
|
|
|
|
|
unset($options['type']);
|
|
|
|
unset($options['id']);
|
|
|
|
unset($options['signatureValue']);
|
|
|
|
|
|
|
|
return array_merge($newopts, $options);
|
2018-09-20 23:45:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private static function hash($obj)
|
|
|
|
{
|
|
|
|
return hash('sha256', JsonLD::normalize($obj));
|
|
|
|
}
|
|
|
|
}
|