friendica/src/Util/LDSignature.php

88 lines
1.9 KiB
PHP
Raw Normal View History

2018-09-20 23:45:23 +02:00
<?php
namespace Friendica\Util;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger;
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']);
}
public static function getSigner($data)
2018-09-20 23:45:23 +02:00
{
if (!self::isSigned($data)) {
return false;
}
$actor = JsonLD::fetchElement($data, 'actor', 'id');
2018-12-04 08:12:55 +01:00
if (empty($actor) || !is_string($actor)) {
return false;
2018-09-20 23:45:23 +02:00
}
2018-09-30 10:14:05 +02:00
$profile = APContact::getByURL($actor);
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
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',
'nonce' => Strings::getRandomHex(64),
2018-09-20 23:45:23 +02:00
'creator' => $owner['url'] . '#main-key',
'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
{
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));
}
}