# worker/4.9.25/src/MWP/Signer/Interface.php

ManageWP Worker, version 4.9.25. 23 lines.

- Page: https://pluginprobe.com/plugins/worker/4.9.25/code/src/MWP/Signer/Interface.php
- Raw: https://pluginprobe.com/plugins/worker/4.9.25/raw/src/MWP/Signer/Interface.php
- Modified: 2025-04-24T06:49:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/worker/4.9.25/code/src/MWP/Signer/Interface.php#L10-L20`.

```php
<?php
/*
 * This file is part of the ManageWP Worker plugin.
 *
 * (c) ManageWP LLC <contact@managewp.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

interface MWP_Signer_Interface
{
    /**
     * @param string $data
     * @param string $signature
     * @param string $publicKey
     * @param string|null $algorithm
     *
     * @return bool
     */
    public function verify($data, $signature, $publicKey, $algorithm = null);
}

```
