Файловый менеджер - Редактировать - /home/lmsyaran/public_html/joomla5/libraries/vendor/web-auth/webauthn-lib/src/AttestationStatement/NoneAttestationStatementSupport.php
Назад
<?php declare(strict_types=1); namespace Webauthn\AttestationStatement; use function count; use function is_array; use function is_string; use Psr\EventDispatcher\EventDispatcherInterface; use Webauthn\AuthenticatorData; use Webauthn\Event\AttestationStatementLoaded; use Webauthn\Exception\AttestationStatementLoadingException; use Webauthn\MetadataService\Event\CanDispatchEvents; use Webauthn\MetadataService\Event\NullEventDispatcher; use Webauthn\TrustPath\EmptyTrustPath; final class NoneAttestationStatementSupport implements AttestationStatementSupport, CanDispatchEvents { private EventDispatcherInterface $dispatcher; public function __construct() { $this->dispatcher = new NullEventDispatcher(); } public function setEventDispatcher(EventDispatcherInterface $eventDispatcher): void { $this->dispatcher = $eventDispatcher; } public static function create(): self { return new self(); } public function name(): string { return 'none'; } /** * @param array<string, mixed> $attestation */ public function load(array $attestation): AttestationStatement { $format = $attestation['fmt'] ?? null; $attestationStatement = $attestation['attStmt'] ?? []; (is_string($format) && $format !== '') || throw AttestationStatementLoadingException::create( $attestation, 'Invalid attestation object' ); (is_array( $attestationStatement ) && $attestationStatement === []) || throw AttestationStatementLoadingException::create( $attestation, 'Invalid attestation object' ); $attestationStatement = AttestationStatement::createNone( $format, $attestationStatement, EmptyTrustPath::create() ); $this->dispatcher->dispatch(AttestationStatementLoaded::create($attestationStatement)); return $attestationStatement; } public function isValid( string $clientDataJSONHash, AttestationStatement $attestationStatement, AuthenticatorData $authenticatorData ): bool { return count($attestationStatement->getAttStmt()) === 0; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка