2016-11-18 10:10:05 +01:00
|
|
|
<?php
|
2019-12-03 19:57:53 +01:00
|
|
|
|
2018-03-05 19:33:16 +01:00
|
|
|
declare(strict_types=1);
|
2019-12-03 19:57:53 +01:00
|
|
|
|
2016-11-18 10:10:05 +01:00
|
|
|
/**
|
2024-05-23 09:26:56 +02:00
|
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2016-11-18 10:10:05 +01:00
|
|
|
*/
|
|
|
|
namespace OC\Security\IdentityProof;
|
|
|
|
|
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
|
|
use OCP\IUser;
|
|
|
|
use OCP\IUserManager;
|
|
|
|
|
|
|
|
class Signer {
|
2023-06-26 15:03:13 +03:30
|
|
|
public function __construct(
|
|
|
|
private Manager $keyManager,
|
|
|
|
private ITimeFactory $timeFactory,
|
|
|
|
private IUserManager $userManager,
|
|
|
|
) {
|
2016-11-18 10:10:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a signed blob for $data
|
|
|
|
*
|
|
|
|
* @return array ['message', 'signature']
|
|
|
|
*/
|
2018-03-05 19:33:16 +01:00
|
|
|
public function sign(string $type, array $data, IUser $user): array {
|
2016-11-18 10:10:05 +01:00
|
|
|
$privateKey = $this->keyManager->getKey($user)->getPrivate();
|
|
|
|
$data = [
|
|
|
|
'data' => $data,
|
|
|
|
'type' => $type,
|
|
|
|
'signer' => $user->getCloudId(),
|
|
|
|
'timestamp' => $this->timeFactory->getTime(),
|
|
|
|
];
|
|
|
|
openssl_sign(json_encode($data), $signature, $privateKey, OPENSSL_ALGO_SHA512);
|
|
|
|
|
|
|
|
return [
|
|
|
|
'message' => $data,
|
|
|
|
'signature' => base64_encode($signature),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the data is signed properly
|
|
|
|
*
|
|
|
|
*/
|
2018-03-05 19:33:16 +01:00
|
|
|
public function verify(array $data): bool {
|
2023-06-26 15:03:13 +03:30
|
|
|
if (isset($data['message']['signer'])
|
2016-11-18 10:10:05 +01:00
|
|
|
&& isset($data['signature'])
|
|
|
|
) {
|
2016-11-22 14:53:09 +01:00
|
|
|
$location = strrpos($data['message']['signer'], '@');
|
|
|
|
$userId = substr($data['message']['signer'], 0, $location);
|
2016-11-18 10:10:05 +01:00
|
|
|
|
|
|
|
$user = $this->userManager->get($userId);
|
|
|
|
if ($user !== null) {
|
|
|
|
$key = $this->keyManager->getKey($user);
|
2024-05-15 10:11:31 +02:00
|
|
|
return openssl_verify(
|
2016-11-18 10:10:05 +01:00
|
|
|
json_encode($data['message']),
|
|
|
|
base64_decode($data['signature']),
|
2016-11-22 14:53:09 +01:00
|
|
|
$key->getPublic(),
|
|
|
|
OPENSSL_ALGO_SHA512
|
2024-05-15 10:11:31 +02:00
|
|
|
) === 1;
|
2016-11-18 10:10:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|