You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
388 B
22 lines
388 B
<?php |
|
|
|
namespace Laravel\SerializableClosure\Contracts; |
|
|
|
interface Signer |
|
{ |
|
/** |
|
* Sign the given serializable. |
|
* |
|
* @param string $serializable |
|
* @return array |
|
*/ |
|
public function sign($serializable); |
|
|
|
/** |
|
* Verify the given signature. |
|
* |
|
* @param array $signature |
|
* @return bool |
|
*/ |
|
public function verify($signature); |
|
}
|
|
|