Файловый менеджер - Редактировать - /home/pimjdymy/public_html/safrandsi/vendor/web-auth/webauthn-lib/src/AuthenticatorAssertionResponse.php
Назад
<?php declare(strict_types=1); namespace Webauthn; use Webauthn\AttestationStatement\AttestationObject; /** * @see https://www.w3.org/TR/webauthn/#authenticatorassertionresponse */ class AuthenticatorAssertionResponse extends AuthenticatorResponse { public function __construct( CollectedClientData $clientDataJSON, public readonly AuthenticatorData $authenticatorData, public readonly string $signature, public readonly ?string $userHandle, public readonly null|AttestationObject $attestationObject = null, ) { parent::__construct($clientDataJSON); } public static function create( CollectedClientData $clientDataJSON, AuthenticatorData $authenticatorData, string $signature, ?string $userHandle = null, null|AttestationObject $attestationObject = null, ): self { return new self($clientDataJSON, $authenticatorData, $signature, $userHandle, $attestationObject); } /** * @deprecated since 4.7.0. Please use the property directly. * @infection-ignore-all */ public function getSignature(): string { return $this->signature; } /** * @deprecated since 4.7.0. Please use the property directly. * @infection-ignore-all */ public function getUserHandle(): ?string { return $this->userHandle; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка