D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api2
/
vendor
/
namshi
/
jose
/
src
/
Namshi
/
JOSE
/
Signer
/
OpenSSL
/
Filename :
None.php
back
Copy
<?php namespace Namshi\JOSE\Signer\OpenSSL; use Namshi\JOSE\Signer\SignerInterface; /** * None Signer. */ class None implements SignerInterface { /** * {@inheritdoc} */ public function sign($input, $key) { return ''; } /** * {@inheritdoc} */ public function verify($key, $signature, $input) { return $signature === ''; } }