%PDF- %PDF-
Direktori : /var/www/html/news/vendor/namshi/jose/src/Namshi/JOSE/Signer/ |
Current File : /var/www/html/news/vendor/namshi/jose/src/Namshi/JOSE/Signer/SignerInterface.php |
<?php namespace Namshi\JOSE\Signer; interface SignerInterface { /** * Signs the $input with the $key, after hashing it. * * @param string $input * @param resource|string $key * @return string|null */ public function sign($input, $key); /** * Verifies that the input correspond to the $signature decrypted with the * given public $key. * * @param resource|string $key * @param string $signature * @param string $input * @return boolean */ public function verify($key, $signature, $input); }