X7ROOT File Manager
Current Path:
/home/katmhsmi/public_html/wp-content/plugins/wp-statistics/src/Utils
home
/
katmhsmi
/
public_html
/
wp-content
/
plugins
/
wp-statistics
/
src
/
Utils
/
📁
..
📄
Query.php
(24.68 KB)
📄
Request.php
(8.5 KB)
📄
Signature.php
(805 B)
📄
Url.php
(4.34 KB)
Editing: Signature.php
<?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; } }
Upload File
Create Folder