2018-09-20 23:45:23 +02:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:45:36 +01: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 23:45:23 +02:00
|
|
|
|
|
|
|
namespace Friendica\Util;
|
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
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
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Implements JSON-LD signatures
|
2018-09-23 11:20:25 +02:00
|
|
|
*
|
|
|
|
* 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');
|
2018-12-04 08:12:55 +01:00
|
|
|
if (empty($actor) || !is_string($actor)) {
|
2018-09-22 00:31:33 +02:00
|
|
|
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);
|
2021-05-16 22:58:11 +02:00
|
|
|
Logger::notice('LD-verify', ['verified' => (int)$x, 'actor' => $profile['url']]);
|
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));
|
|
|
|
}
|
|
|
|
}
|