HEX
Server: Apache
System: Linux vps.teamads.com 4.18.0-553.126.1.el8_10.x86_64 #1 SMP Thu May 28 06:44:09 EDT 2026 x86_64
User: teamadsc (1024)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/teamadsc/public_html/wp-content/plugins/wp-defender/src/component/altcha/class-challenge.php
<?php
/**
 * Class Challenge
 *
 * @package WP_Defender\Component\Altcha
 */

namespace WP_Defender\Component\Altcha;

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