Your IP : 216.73.216.215


Current Path : /home/flapst5/ekmtoronto.com/wp-content/plugins/wp-defender/src/component/altcha/
Upload File :
Current File : /home/flapst5/ekmtoronto.com/wp-content/plugins/wp-defender/src/component/altcha/class-payload.php

<?php
/**
 * Class Payload
 *
 * @package WP_Defender\Component\Altcha
 */

namespace WP_Defender\Component\Altcha;

/**
 * Class Payload
 */
class Payload {
	/**
	 * Payload constructor.
	 *
	 * @param string $algorithm The hashing algorithm.
	 * @param string $challenge The challenge string.
	 * @param int    $number The number associated with the challenge.
	 * @param string $salt The salt used in hashing.
	 * @param string $signature The signature of the payload.
	 */
	public function __construct(
		public string $algorithm,
		public string $challenge,
		public int $number,
		public string $salt,
		public string $signature
	) {
	}
}