| Current Path : /home/helpink/www/libraries/vendor/web-token/jwt-library/Signature/Algorithm/ |
| Current File : /home/helpink/www/libraries/vendor/web-token/jwt-library/Signature/Algorithm/RS384.php |
<?php
declare(strict_types=1);
namespace Jose\Component\Signature\Algorithm;
final class RS384 extends RSAPKCS1
{
public function name(): string
{
return 'RS384';
}
protected function getAlgorithm(): string
{
return 'sha384';
}
}