f7cloud_client/apps/richdocuments/lib/WOPI/ProofKey.php
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

31 lines
567 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2025 F7cloud GmbH and F7cloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
declare(strict_types=1);
namespace OCA\Richdocuments\WOPI;
class ProofKey {
public function __construct(
private readonly ?string $exponent,
private readonly ?string $modulus,
private readonly ?string $value,
) {
}
public function getExponent(): ?string {
return $this->exponent;
}
public function getModulus(): ?string {
return $this->modulus;
}
public function getValue(): ?string {
return $this->value;
}
}