2018-09-20 17:45:23 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
2021-03-29 02:40:20 -04:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 09:45:36 -05:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-09-20 17:45:23 -04:00
|
|
|
|
|
|
|
namespace Friendica\Util;
|
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-09-26 13:24:29 -04:00
|
|
|
use Friendica\Model\APContact;
|
2018-09-20 17:45:23 -04:00
|
|
|
|
2018-09-23 05:20:25 -04:00
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Implements JSON-LD signatures
|
2018-09-23 05:20:25 -04:00
|
|
|
*
|
|
|
|
* Ported from Osada: https://framagit.org/macgirvin/osada
|
|
|
|
*/
|
2018-09-20 17:45:23 -04:00
|
|
|
class LDSignature
|
|
|
|
{
|
|
|
|
public static function isSigned($data)
|
|
|
|
{
|
|
|
|
return !empty($data['signature']);
|
|
|
|
}
|
|
|
|
|
2018-09-21 18:31:33 -04:00
|
|
|
public static function getSigner($data)
|
2018-09-20 17:45:23 -04:00
|
|
|
{
|
|
|
|
if (!self::isSigned($data)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-21 18:31:33 -04:00
|
|
|
$actor = JsonLD::fetchElement($data, 'actor', 'id');
|
2018-12-04 02:12:55 -05:00
|
|
|
if (empty($actor) || !is_string($actor)) {
|
2018-09-21 18:31:33 -04:00
|
|
|
return false;
|
2018-09-20 17:45:23 -04:00
|
|
|
}
|
|
|
|
|
2018-09-30 04:14:05 -04:00
|
|
|
$profile = APContact::getByURL($actor);
|
2018-09-21 18:31:33 -04:00
|
|
|
if (empty($profile['pubkey'])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$pubkey = $profile['pubkey'];
|
|
|
|
|
2018-09-27 09:31:32 -04:00
|
|
|
$ohash = self::hash(self::signableOptions($data['signature']));
|
|
|
|
$dhash = self::hash(self::signableData($data));
|
2018-09-20 17:45:23 -04:00
|
|
|
|
|
|
|
$x = Crypto::rsaVerify($ohash . $dhash, base64_decode($data['signature']['signatureValue']), $pubkey);
|
2021-05-16 16:58:11 -04:00
|
|
|
Logger::notice('LD-verify', ['verified' => (int)$x, 'actor' => $profile['url']]);
|
2018-09-20 17:45:23 -04:00
|
|
|
|
2018-09-21 18:31:33 -04:00
|
|
|
if (empty($x)) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return $actor;
|
|
|
|
}
|
2018-09-20 17:45:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function sign($data, $owner)
|
|
|
|
{
|
|
|
|
$options = [
|
|
|
|
'type' => 'RsaSignature2017',
|
2018-11-08 08:45:46 -05:00
|
|
|
'nonce' => Strings::getRandomHex(64),
|
2018-09-20 17:45:23 -04:00
|
|
|
'creator' => $owner['url'] . '#main-key',
|
2018-09-21 18:31:33 -04:00
|
|
|
'created' => DateTimeFormat::utcNow(DateTimeFormat::ATOM)
|
2018-09-20 17:45:23 -04:00
|
|
|
];
|
|
|
|
|
2018-09-27 09:31:32 -04:00
|
|
|
$ohash = self::hash(self::signableOptions($options));
|
|
|
|
$dhash = self::hash(self::signableData($data));
|
2018-09-20 17:45:23 -04:00
|
|
|
$options['signatureValue'] = base64_encode(Crypto::rsaSign($ohash . $dhash, $owner['uprvkey']));
|
|
|
|
|
|
|
|
return array_merge($data, ['signature' => $options]);
|
|
|
|
}
|
|
|
|
|
2018-09-27 09:31:32 -04:00
|
|
|
private static function signableData($data)
|
2018-09-20 17:45:23 -04:00
|
|
|
{
|
2018-09-21 18:31:33 -04:00
|
|
|
unset($data['signature']);
|
|
|
|
return $data;
|
2018-09-20 17:45:23 -04:00
|
|
|
}
|
|
|
|
|
2018-09-27 09:31:32 -04:00
|
|
|
private static function signableOptions($options)
|
2018-09-20 17:45:23 -04:00
|
|
|
{
|
|
|
|
$newopts = ['@context' => 'https://w3id.org/identity/v1'];
|
2018-09-25 17:18:37 -04:00
|
|
|
|
|
|
|
unset($options['type']);
|
|
|
|
unset($options['id']);
|
|
|
|
unset($options['signatureValue']);
|
|
|
|
|
|
|
|
return array_merge($newopts, $options);
|
2018-09-20 17:45:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private static function hash($obj)
|
|
|
|
{
|
|
|
|
return hash('sha256', JsonLD::normalize($obj));
|
|
|
|
}
|
|
|
|
}
|