25 lines
664 B
PHP
25 lines
664 B
PHP
<?php
|
|
|
|
namespace Lexik\Bundle\JWTAuthenticationBundle\Services\JWSProvider;
|
|
|
|
use Lexik\Bundle\JWTAuthenticationBundle\Signature\CreatedJWS;
|
|
use Lexik\Bundle\JWTAuthenticationBundle\Signature\LoadedJWS;
|
|
|
|
/**
|
|
* Interface for classes that are able to create and load JSON web signatures (JWS).
|
|
*
|
|
* @author Robin Chalas <robin.chalas@gmail.com>
|
|
*/
|
|
interface JWSProviderInterface
|
|
{
|
|
/**
|
|
* Creates a new JWS signature from a given payload.
|
|
*/
|
|
public function create(array $payload, array $header = []): CreatedJWS;
|
|
|
|
/**
|
|
* Loads an existing JWS signature from a given JWT token.
|
|
*/
|
|
public function load(string $token): LoadedJWS;
|
|
}
|