Файловый менеджер - Редактировать - /home/pimjdymy/public_html/safrandsi/vendor/web-auth/webauthn-lib/src/Denormalizer/AuthenticatorAttestationResponseDenormalizer.php
Назад
<?php declare(strict_types=1); namespace Webauthn\Denormalizer; use ParagonIE\ConstantTime\Base64UrlSafe; use Symfony\Component\Serializer\Normalizer\DenormalizerAwareInterface; use Symfony\Component\Serializer\Normalizer\DenormalizerAwareTrait; use Symfony\Component\Serializer\Normalizer\DenormalizerInterface; use Webauthn\AttestationStatement\AttestationObject; use Webauthn\AuthenticatorAttestationResponse; use Webauthn\CollectedClientData; use Webauthn\Util\Base64; final class AuthenticatorAttestationResponseDenormalizer implements DenormalizerInterface, DenormalizerAwareInterface { use DenormalizerAwareTrait; public function denormalize(mixed $data, string $type, ?string $format = null, array $context = []): mixed { $data['clientDataJSON'] = Base64UrlSafe::decodeNoPadding($data['clientDataJSON']); $data['attestationObject'] = Base64::decode($data['attestationObject']); $clientDataJSON = $this->denormalizer->denormalize( $data['clientDataJSON'], CollectedClientData::class, $format, $context ); $attestationObject = $this->denormalizer->denormalize( $data['attestationObject'], AttestationObject::class, $format, $context ); return AuthenticatorAttestationResponse::create( $clientDataJSON, $attestationObject, $data['transports'] ?? [], ); } public function supportsDenormalization( mixed $data, string $type, ?string $format = null, array $context = [] ): bool { return $type === AuthenticatorAttestationResponse::class; } /** * @return array<class-string, bool> */ public function getSupportedTypes(?string $format): array { return [ AuthenticatorAttestationResponse::class => true, ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка