/
home
/
maktab
/
server
/
vendor
/
namshi
/
jose
/
src
/
Namshi
/
JOSE
/
Signer
/
SecLib
/
File Upload :
llllll
Current File: //home/maktab/server/vendor/namshi/jose/src/Namshi/JOSE/Signer/SecLib/PublicKey.php
<?php namespace Namshi\JOSE\Signer\SecLib; use InvalidArgumentException; use Namshi\JOSE\Signer\SignerInterface; abstract class PublicKey implements SignerInterface { protected $encryptionAlgorithm; /** * {@inheritdoc} */ public function sign($input, $key, $password = null) { if ($password) { $this->encryptionAlgorithm->setPassword($password); } if (!$this->encryptionAlgorithm->loadKey($key)) { throw new InvalidArgumentException('Invalid key supplied.'); } return $this->encryptionAlgorithm->sign($input); } /** * {@inheritdoc} */ public function verify($key, $signature, $input) { if (!$this->encryptionAlgorithm->loadKey($key)) { throw new InvalidArgumentException('Invalid key supplied.'); } return $this->encryptionAlgorithm->verify($input, $signature); } }
Copyright ©2k19 -
Hexid
|
Tex7ure