| 1 |
<?php |
| 2 |
/* =========================================================================== |
| 3 |
* Copyright (c) 2018-2019 Zindex Software |
| 4 |
* |
| 5 |
* Licensed under the MIT License |
| 6 |
* =========================================================================== */ |
| 7 |
|
| 8 |
namespace Opis\Closure; |
| 9 |
|
| 10 |
interface ISecurityProvider |
| 11 |
{ |
| 12 |
/** |
| 13 |
* Sign serialized closure |
| 14 |
* @param string $closure |
| 15 |
* @return array |
| 16 |
*/ |
| 17 |
public function sign($closure); |
| 18 |
|
| 19 |
/** |
| 20 |
* Verify signature |
| 21 |
* @param array $data |
| 22 |
* @return bool |
| 23 |
*/ |
| 24 |
public function verify(array $data); |
| 25 |
} |